comboboxes that dropdown when on focus

  • Thread starter Thread starter papa jonah
  • Start date Start date
P

papa jonah

Is there some un-intuitive syntax or supersecret code that I can put
into a got focus event that will cause the dropdown to display when I
tab into a combobox?

TIA
 
In the Enter event of the combo, use its DropDown method.

Example:
Private Sub ClientID_Enter()
Me.ClientID.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