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

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

thx ;o)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top