PDA

Click to See Complete Forum and Search --> : MS Access and VB


stmartin
Jun 30th, 1999, 01:50 AM
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!

DVint
Jun 30th, 1999, 03:13 PM
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.