Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

combo box - HELP!!

Status
Not open for further replies.

jackie1948

Programmer
Jan 25, 2002
78
0
0
US
I have a from with a combo box that I want to drop down a list of member after the last name is entered.
example:

1. enter 'jones' in combo box
2. click search button
3. I want the combo box to display all the members with
the last name of 'jones'
4. From this list I want to select one name (which will them be the one to be displayed in the combo box) to then display there history in a list box.
 
jackie1948

How about using an "autofill" comboxbox as described in faq184-1792. Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first
 
How do you fill the combobox ? I sugest you to fill with a SQL statement with parameter beeing This.Value. Else you can declare a variable in the form and use this in the SQL. In the interactivechange event of the combobox you pass This.Value to the variable and then Requery.
Good luck
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top