M
msaq
Greetings! By using the AutoExpand property on a combo box on an Access
form, I can already quite simply select a record that matches the first
few characters typed into the combo box. For example, typing in "ap"
will match "apple", "aptitude", "appalachian", etc.
Now I would like to have the exact same AutoExpand-like features except
that instead of matching only the first few characters I have typed in,
I would like to do a wildcard full-text match, such that typing in
"apt" will match "captain", "aptitude", and "rapt".
I do not have many records so performance is not an issue.
If this is correct, can someone please provide this code? Or is there
an easier way to accomplish what I'm looking to do? Perhaps a third
party combo box control that supports full text search?
form, I can already quite simply select a record that matches the first
few characters typed into the combo box. For example, typing in "ap"
will match "apple", "aptitude", "appalachian", etc.
Now I would like to have the exact same AutoExpand-like features except
that instead of matching only the first few characters I have typed in,
I would like to do a wildcard full-text match, such that typing in
"apt" will match "captain", "aptitude", and "rapt".
I do not have many records so performance is not an issue.
AutoExpand feature, and find the right place to issue a wildcard query.From reading previous posts I gather I will need VB code to mimic the
If this is correct, can someone please provide this code? Or is there
an easier way to accomplish what I'm looking to do? Perhaps a third
party combo box control that supports full text search?