Name research

  • Thread starter Thread starter Bernd Smits
  • Start date Start date
B

Bernd Smits

Hello,
I'd would like to create a 'name research' tool in my database. So that, if
I insert the first letter of a name, there will compare a list of names that
begin with the letter inserted and so on as I insert the second, third, etc.
letter of the name I'm looking for.
How can I inmplement it. Is there some tutorial online that can help me?
Thanks
Bernd
 
A combo box control on a form will do this automatically for you. You set
the control's Row Source to be a query that returns the list of names, and
then the combo box (if you have the AutoExpand option set to Yes for it)
will find the names in the way you describe.
 
Back
Top