Combo Box

S

Stuart

Hello

Is it possible to drop down a combo box when a field is
selected. This is the same as pressing the little arrow.


Thank You

Stu
 
M

Michel Walsh

Hi,


Check if your Access version allows to use the Combo box Method
Dropdown.


Hoping it may help,
Vanderghast, Access MVP
 
J

John Spencer (MVP)

You can use the keystroke. Alt+Down Arrow.

Or you can use vba code. If you are doing this in the combobox you can use the
GotFocus event.

Private Sub Combo0_GotFocus()
Me.Combo0.Dropdown

End Sub
 
Top