Expand Combo box

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
 
M

Marshall Barton

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
 

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

Top