ComboBox: Auto-Expand on Enter, how to

  • Thread starter Thread starter Ed Warren
  • Start date Start date
E

Ed Warren

I want to have a combo-box 'expand' (show the choices) when the user enters
the control. I have not been able to find how to make it do this.

Thanks,

Ed Warren.
 
Look at the .Dropdown property of the combo box. For the OnEnter (or any
event that fires when you activate the combo box), type in something like:
Me.comboboxname.Dropdown
 
Back
Top