Saving my place in COMBO list...

  • Thread starter Thread starter Bill Mitchell
  • Start date Start date
B

Bill Mitchell

Hi,

I have a COMBO list box that I use for assigning JOB
ORDERS to my CANDIDATES. I select a JOB from the list
and it assigns it to the active CANDIDATE. However, when
i select the COMBO list again, it is back at the top. I
would like it to be at the last JOB I selected so I can
continue down the list.

Is there any way I can "save" my spot on the list so when
I select the COMBO box again I'm not at the top?

I would think ACCESS would do this automatically but
apparently it does not :(

Thanks
 
Try this on the "ON CLICK" event of the combo box:

YourComboBox.Value = YourComboBox.OldValue
 
Back
Top