Expand Combo box

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

Guest

I have a ComboBox (cboClient) that searches the form for a specific record.
I would like for the combo to expand when the user begins to type so that
they can see where they are in the list. As it is right now, the user must
begin typing and then click the arrow to expand the box.

Any help is appreciated!

Tara
 
Tara said:
I have a ComboBox (cboClient) that searches the form for a specific record.
I would like for the combo to expand when the user begins to type so that
they can see where they are in the list. As it is right now, the user must
begin typing and then click the arrow to expand the box.


Use the DropDown property in the Enter or Change event,
depending on the effect you want.

Me.combobox.DropDown
 
Back
Top