Combo box question

B

bladelock

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?
 
S

Sprinks

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
 
R

Rick B

Add code to the form's got focus event...

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