P
paolol
Hi,
I wont to get the current row values from a dataset, any one know how to
reach those data ??
At the moment I use a work around, but it's not good ..
foreach (DataRow row in this.pitagoralavoriDataSet.Addetti.Rows)
{
if (Convert.ToString(row["Nome"])== sNomeU){
idutente = Convert.ToInt32(row["id"]);
}
Because I don't want to show a label with the name ( sNomeU is =
label1.tetx )
Thanks to all.
Paolol
I wont to get the current row values from a dataset, any one know how to
reach those data ??
At the moment I use a work around, but it's not good ..
foreach (DataRow row in this.pitagoralavoriDataSet.Addetti.Rows)
{
if (Convert.ToString(row["Nome"])== sNomeU){
idutente = Convert.ToInt32(row["id"]);
}
Because I don't want to show a label with the name ( sNomeU is =
label1.tetx )
Thanks to all.
Paolol