DataGrid

M-RaH

Active member
Joined
Feb 9, 2006
Messages
25
Location
Netherlands
Programming Experience
Beginner
I have a form with some searchfields ...

When i fill in a criterion i want to see the info about it ... f.e. < 'john' >

then see : John, 20, Male ...

when i click on the button in Form_Search ... i want the results in a DataGrid in Form_Results ....

i don't know how to work with datagrids maybe someone can help me with this ???

thanx ;)
 
Quick hints.

Use SQL to get the dataset filtered down to the criteria from the search form.

You will most likely be binding the datagrid to that dataset on the results form.
Just like binding a textbox to a specific field.

Research DataGrid.TableStyles to format the datagrid into the format you like.

The dataform wizard will get you up and going with a basic datagrid form and is easy to use.
 
Back
Top