ComboBox: Auto-Expand on Enter, how to

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.
 
M

Mark

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
 
Top