Combo Box Alphabetized

H

Harold M

Is there a way to automatically alphabetize contents of a combobox using
code?

Thanks
 
D

Douglas J. Steele

Base the combobox on a query, not the table itself, and put an appropriate
ORDER BY clause in the query.
 
H

Harold M

Thank you. I was hoping to avoid having to use a query since it they can
all add up both is size and clutter.
 
D

Douglas J. Steele

They add very little in terms of size. I never base anything on tables: I
always use queries.
 
Top