Combo Box to Automatically Drop Down

  • Thread starter Thread starter Josef
  • Start date Start date
J

Josef

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

thanks.
 
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
 
Sure .. use the .DropDown property of the combo box:

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