Make combo box list drop down?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When the user enters the combo box how can I make the list drop down
immediately without the need to click onto the arrow head?
 
When the user enters the combo box how can I make the list drop down
immediately without the need to click onto the arrow head?

Code the Combo box Enter event:

Me!ComboName.Dropdown
 
Fred,

could I put the same code in the Form Current (or some other) event to cause
that same combo box to drop down when the form opened?

Gary
 
Change the 'Tab Order' of the combo box so that is has focus first--be sure
the include the code previously posted too.

Best regards,

Todd Shillam
 
Thanks, Todd

Gary

Todd Shillam said:
Change the 'Tab Order' of the combo box so that is has focus first--be sure
the include the code previously posted too.

Best regards,

Todd Shillam
 
Back
Top