Hi Floyd,
Open the form containing the combo box in design
mode. On the Recordsource property line you should see
some SQL if you used the wizard to build the combo box.
For example:
SELECT [tblTests].[ID], [tblTests].[Number],
[tblTests].[LName] FROM [tblTests]
Add the following to that line:
ORDER BY tblTests.Number;
Change the field names in the above example to the ones in
your db
Change the RowSource to use SQL to something like the following
SELECT {yourColumn} FROM {yourTable} ORDER BY {yourColumn}
You will have to change {yourColumn} and {yourTable}
including {} with your own names.
Hope This Helps
Gerald Stanley MCSD
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.