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
 

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