hi,
Firstly, make a connection for your database 'db.mdb'
After calling the connection, you have to write VB code for your need:
Write the SQL command statement for searching in the btnSearch Click event as beow:
if fldSearch.Text is the textbox in which you write the string/ any word to search.
sql="Select * FROM Table_Name WHERE Column_Name like '" & Trim(fldSearch.Text) & "%'"
The above SQL will search all the like word written in the search text box.
If you want to write to search only 'Mark' then you rill mody this:
sql="Select * FROM Table_Name WHERE Column_Name ='Mark'"
To send you the complte code, you have to tell me the database name, Table anem and Table structure, and how you connect the database. I hope this will solve your problem.