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