Make combo box list drop down?

M

Malcolm P

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?
 
F

fredg

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
 
G

Gary Schuldt

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
 
T

Todd Shillam

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
 
G

Gary Schuldt

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
 
Top