Coding for Autocomplete

D

Darrin

Can anyone share code for autocomplete in a text box? In
other words, you begin typing and similar words appear in
the text box.

Thanks
 
M

MacDermott

Normally, you would use a combobox for this.
The AutoExpand feature is on by default.

Otherwise, how would the program know what words you might be trying to
complete?

- Turtle
 
M

MacDermott

Normally, you would use a combobox for this.
The AutoExpand feature is on by default.

Otherwise, how would the program know what words you might be trying to
complete?

- Turtle
 
S

Sandra Daigle

Hi Darrin,

This is typically done with a combo box, with the AutoExpand property set to
true. The combo must have a RowSource so that it knows which column of which
table to use for matching.
 
S

Sandra Daigle

Hi Darrin,

This is typically done with a combo box, with the AutoExpand property set to
true. The combo must have a RowSource so that it knows which column of which
table to use for matching.
 

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