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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Context sensitive in VB 6.0

Status
Not open for further replies.

surad

Technical User
Mar 10, 2003
37
US
I am looking for how to make context sensitive (for example when you are searching Mark ... it shows you all the last names starts with M in sorting order) on VB 6.0.
 
Look into using the 'LIKE' keyword in your SQL statements to return the data you want.

Code:
Select * From Table1 Where (Field1 Like '" text1.text & "%')

The '%' is the ADO wildcard character.

zemp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top