combo boxes

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

Guest

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!
 
In the combo box's GotFocus event, put code like:

Private Sub MyCombo_GotFocus()
Me.MyCombo.Dropdown
End Sub
 
Thank you very much. I knew it would be something simple and that I learnt
in school. :)
 

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