Why is record in combobox not alphabetically arranged?
Why is record in combobox not alphabetically arranged?
(OP)
Hi everyone... i have these code in Load procedure....
SELECT PADR(ALLTRIM(UPPER(sname)) + ", " + ALLTRIM(fname),25), idnum FROM tsulat ORDER BY sname, fname INTO CURSOR PgBseCbo
my question is, why is it not showing alpabetically in the dropdown list, not all but some of the record are not in proper order? did i miss something? Thanks and God bless...
SELECT PADR(ALLTRIM(UPPER(sname)) + ", " + ALLTRIM(fname),25), idnum FROM tsulat ORDER BY sname, fname INTO CURSOR PgBseCbo
my question is, why is it not showing alpabetically in the dropdown list, not all but some of the record are not in proper order? did i miss something? Thanks and God bless...
RE: Why is record in combobox not alphabetically arranged?
The combo/listbox has no load event. Please reread the code I provided in thread thread184-1824310: Why is new record not showing in dropdown list?
hth
MarK
RE: Why is record in combobox not alphabetically arranged?
Chriss
RE: Why is record in combobox not alphabetically arranged?
Mike
__________________________________
Mike Lewis (Edinburgh, Scotland)
Visual FoxPro articles, tips and downloads
RE: Why is record in combobox not alphabetically arranged?
Ok I'll Try putting collate... Thanks again...