Linebacker
Programmer
Hello,
I want to read the value of a string which is in a field in a DataGrid. The primary key of the row I want to read from is chosen by a randomizer.
I have already stored the result of the randomizer in a variable. (see source code below)
Looking forward to your answers.
Random rnd = new Random();
int Line = rnd.Next(MaxValue)+ 1;
this.lunch1.DataSetLunch.Rows.Find(Line);
LB
I want to read the value of a string which is in a field in a DataGrid. The primary key of the row I want to read from is chosen by a randomizer.
I have already stored the result of the randomizer in a variable. (see source code below)
Looking forward to your answers.
Random rnd = new Random();
int Line = rnd.Next(MaxValue)+ 1;
this.lunch1.DataSetLunch.Rows.Find(Line);
LB