
Hello how can iIDisplay Specific Row wise Data on the Labels of windows form based application.
For Example I Want to display 2nd row data on the labels So what Strategy will be Used for this

Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Amit Kumar SinghPosted Mar 1, 2016, 7:07 AM
{
lbl1.Text=Convert.ToInt32(ds.Tables[0].Row[0]["Product_Id"].ToString());
lbl2.Text=ds.Tables[0].Row[0]["Product_Name"].ToString();
lbl3.Text=Convert.ToInt32(ds.Tables[0].Row[0]["Qty"].ToString());
lbl4.Text=Convert.ToInt32(ds.Tables[0].Row[0]["TotalAmt"].ToString());
}
Dorababu MekaPosted Mar 1, 2016, 6:52 AM
Sumar KhanPosted Mar 1, 2016, 6:49 AM
Dorababu MekaPosted Mar 1, 2016, 6:47 AM
Sumar KhanPosted Mar 1, 2016, 6:45 AM
Dorababu MekaPosted Mar 1, 2016, 6:43 AM
Sumar KhanPosted Mar 1, 2016, 6:42 AM
Dorababu MekaPosted Mar 1, 2016, 6:37 AM