search module

carla

Member
Joined
May 28, 2007
Messages
6
Programming Experience
3-5
Hi,
How can I do to search for any instance in a form (based in any field of the form)?
thanks,
Carla
 
I’ve created a form with various field linked to a database, and I would like to search information based in information entered in any of the fiel.
Ex: if I put 12 in the code field I would like to find all records with the 12 code
If I put vb in the description field I would like to find recors with the vb description
thanks,
Carla
 
This can be easily accomplished with a DataSet to display the data and a DataAdapter to fill the dataset. All you have to do is figure out the logic to make sure you are selecting the correct fields. Then another form with a datagrid to display the results from the dataset.
 
Back
Top