Auto dropdown

J

John

I would like the list of a combobox to dropdown when the form (where the
combox is in) is opened.
How can I do that?
Thanks,
John
 
F

fredg

I would like the list of a combobox to dropdown when the form (where the
combox is in) is opened.
How can I do that?
Thanks,
John

Only when the form is first opened?

Code the form's Load event:

Me.ComboName.SetFocus
Me.ComboName.Dropdown
 
Top