Combo Box to Automatically Drop Down

J

Josef

is there a way to automatically have the combo box drop down
automatically when focus is set to it?

thanks.
 
R

Rick Brandt

Josef said:
is there a way to automatically have the combo box drop down
automatically when focus is set to it?

In the GotFocus event...

Me.ComboBoxName.DropDown
 
K

Ken Snell

Sure .. use the .DropDown property of the combo box:

Private Sub cboBoxName_GotFocus()
Me.cboBoxName.Dropdown
End Sub
 
Top