Hi!
It's my very first time to be registered in this forum. I'm starting as a new in C#.Net world.
On my button I wrote this code below I can make a search easly through my wroten codes. But I would like to know how can I search a record from a textbox placed on my form.
thanks,
Leader2000
It's my very first time to be registered in this forum. I'm starting as a new in C#.Net world.
On my button I wrote this code below I can make a search easly through my wroten codes. But I would like to know how can I search a record from a textbox placed on my form.
thanks,
Leader2000
string searchFor = "Patel";
int results = 0;
DataRow[] returnedRows;
returnedRows = ds1.Tables["Workers"].Select("last_name='" + searchFor + "'");
//returnedRows = ds1.Tables["Workers"].Select(textBox1.Text='" + searchFor + "'");
results = returnedRows.Length;
if (results > 0)
{
DataRow dr1;
dr1 = returnedRows[0];
MessageBox.Show(dr1[1].ToString() + " " + dr1[2].ToString());
}
else
{
MessageBox.Show("No such Record");