in what part do you need help?
I am giving you some ideas here.
Let's suppose that you have a textBox called txtName and a button called btnName.
Add a new form to your project, called it whatever you want like frmDisplay. In the btnName click event show the frmDisplay form, and pass to it the right query like
"select * from mytable where Name = '" & txtname.text & "'"
and bind the grid to this query
Marco
|