Combo box question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I make the drop menu on the combo boxes open when I click on the text
box area, not the arrow drop down button?
 
Hi, Bladelock.

Using either the OnClick or OnGotFocus event, you can use the Dropdown
method of the combo box object:

Me!MyComboBox.Dropdown

Hope that helps.
Sprinks
 
Add code to the form's got focus event...

Private Sub SomeFieldName_GotFocus()
Me.SomeFieldName.Dropdown
End Sub
 
Back
Top