Combo Box Double Click Selection

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

Bob

-Is it possible to make your drop down list selection only with a double
click for safety...Thanks Bob







..........Jenny Vance
 
No, the combo box's design is that a single click will make the selection.
What you need to do instead is use BeforeUpdate event of the combo box to
validate that the user wants that choice, and to cancel the event if the
user says no. Or use the Form's BeforeUpdate event to do a similar
validation.
 
Back
Top