combo boxes

M

mnomaha

Hi,

What I want to do is arrow down when I get to the combo box instead of
clicking. Is there a way to do this?

Thanks!
 
D

Douglas J. Steele

In the combo box's GotFocus event, put code like:

Private Sub MyCombo_GotFocus()
Me.MyCombo.Dropdown
End Sub
 
M

mnomaha

Thank you very much. I knew it would be something simple and that I learnt
in school. :)
 
Top