Combo Box

L

Lee

How can I narrow down the list displayed in the drop down while the user
types? For example, if the list is a list of customers and the user types an
'a' then only the items beginning with 'a' should be shown etc.
 
M

Marshall Barton

Lee said:
How can I narrow down the list displayed in the drop down while the user
types? For example, if the list is a list of customers and the user types an
'a' then only the items beginning with 'a' should be shown etc.


Try using the AutoExpand property.
 
B

Beetle

That is the default behavior of combo boxes. If yours is not
doing that, I would guess that the Auto Expand property
somehow got set to No. If so, change it to Yes.
 
M

Mike Painter

Lee said:
How can I narrow down the list displayed in the drop down while the
user types? For example, if the list is a list of customers and the
user types an 'a' then only the items beginning with 'a' should be
shown etc.
Build the query for the drop down to select only type "A" (and look out for
heart attacks....)
You will have to requery the combobox after the user type is picked.
 
L

Lee

Tried that with no luck, also tried som variations on the column order and
bound column but still could not get it to work.
 

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