-
I'm new @ this so bear with me ...
I have a database in Access (Name, Address, City, Etc.)... and I'm in need of a VB interface that will search the database and pull up all the information of a particular person.
Any suggestions as to the easiest way to handle this?
Thanks in Advance!
-
Make a form containing a data control, text boxes for the data fields, a text box for entering the search field data, and a command button. Attach the data control to the appropriate table, and bind the text boxes to the data control. In the Command_Click event, write a sub that uses Seek to go out and seek the record matching the value you've entered into the Search text box.