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
 
Back
Top