Click here to Skip to main content
15,893,564 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Here Is My Code...

here i have one textbox..when writing some text automatically match the String and find all Row..

now ..but in my code..here Only Filter using "ClientName" i want serch that text from all the Column..

How to specify the All The Column in the RowFilter plzz give me solution:
C#
private void txtSearch_TextChanged(object sender, EventArgs e)
{
  dv.RowFilter = "ClientName Like '%" + txtSearch.Text + "%'";
  dgClientMaster.DataSource = dv;
}
Posted
Updated 1-Oct-12 8:12am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900