Hi,
I have 4 searchbox and with them i can search in a Datagridview.
But the problem is that they are not connected to each other. So what I want is that they are connected to each other.
If i search in 'firstname' then the firstname displays but when I search in 'last name' then I want it to show the 'first name' and display the last name is had entered earlier.
This is the code i have used to search in datagridview.
DataView Dv = new DataView();
Dv.Table = partsDataSet.Tables["parttable"];
Dv.RowFilter = " Model LIKE '%" + modelSearchBox.Text + "%' ";
dataGridView1.DataSource = Dv;