Hi, Jennifer.
A simpler solution would be to sort your Hotshot combo box alphabetically,
and your form by a date/time timestamp that is assigned when you select a
driver. Then your form would display previous records in time order, and
each group of ten would be in alphabetical order. Then you could see easily
which one was up next. For example, it might look like:
RecordID Driver Record Date/Time
----------------- ----------------- -----------------------
1 Al 3/11/05 2:30:05 pm
2 Bob 3/11/05 2:31:10 pm
3 Charlie 3/11/05 3:00:05 pm
Looking at the list, it's easy to see that whoever's after Charlie is the
next one to select.
To implement the timestamp, first add a field to your table. Avoid the
reserved word Date or Time as a field name, say for example, OrderTime. Then
in the AfterUpdate event of the combo box, assign the current time to your
OrderTime field:
Me![OrderTime] = Now()
To sort your Hotshot combo box alphabetically, add an ORDER BY clause to the
Row Source statement:
[Current SELECT statement minus terminating semicolon]
ORDER BY Hotshot.DriverName;
Hope that helps.
Sprinks