Text Box Question

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

My text box drops down each time I enter something in to it in serial order,
for some reason they are not in serial order, what can I do to check that
everything is correct, It goes something like this, 1 2 3 5 7 8 10 2 6 12

Thanks in advance.........Bob Vance
 
Your text box drops down? Are you talking about a combo box? If yes, you can
order the list in the combo box's dropdown list by using a query as the
combo box's RowSource, and include an ORDER BY clause in that query that
will sort the data the way you wish.
 
Back
Top