HI Guys
Below coding give me an exception
cannot bind to data table with no name
Belwo I mention coding part I wrote
private void textBox1_TextChanged(object sender, EventArgs e)
{
DataView Dv = new DataView();
DataTable D1 = new DataTable("Test");
D1 = (DataTable)dataGridView1.DataSource;
Dv.Table = D1;
Dv.RowFilter = "SHOP_CODE Like '" + textBox1.Text + "%'";
dataGridView1.DataSource= Dv;
}