based on any textbox in form tell me you are filter by A And B and C AS Example
meaning when textbox1 has value A AND textbox2 has value B and textbox3 has value C
message or label tell me you are filter based on A,B,C
So that i need to loop throught all textboxes and if any textbox has value
message show or label show you are filter by a,b,c,d etc
How i do that
my function dynamic search meaning if you search by any textbox search will work
this is my function
FleetManagment.
Fleet fleet = new FleetManagment.Fleet();
DataTable Table = fleet.SearchEmployeeAllDateBetween("Data Source=" + value1 + ";Initial Catalog=" + value2 + ";User ID=" + value3 + ";Password=" + value4 + "", textBox1.Text, textBox2.Text, textBox5.Text, textBox28.Text, textBox7.Text, textBox8.Text, textBox9.Text, textBox10.Text, textBox11.Text, textBox12.Text, textBox13.Text, textBox14.Text, textBox15.Text, textBox16.Text, textBox17.Text, textBox18.Text, textBox19.Text, textBox20.Text, textBox21.Text, textBox22.Text, textBox23.Text, textBox24.Text, textBox25.Text, textBox26.Text, textBox31.Text, textBox32.Text, textBox27.Text, textBox30.Text, textBox29.Text, textBox6.Text, textBox4.Text, textBox33.Text, textBox53.Text, textBox3.Text, textBox34.Text, textBox56.Text, textBox51.Text, label33.Text, label34.Text);
dataGridView1.DataSource = Table;
dataGridView1.Refresh();