R
RCB
I created a new Vb.NET project and used the Data Form Wizard to create a
dataset and grid to view a single table from my database. Later I read an
article about creating a Typed Dataset. I was successful at doing so, but
now the following line of code does not work for looping through the records
of my dataset. Is there something I need to change to now look through a
Typed Dataset with just a single table?
Thanks!
This code used to work with the dataset created with the Data Form Wizard.
It no longer does when I manually coded for a Typed Dataset...
For i As Integer = 1 To TdsXeditGrid.Tables(0).Rows.Count - 1
TdsXeditGrid.Tables(0).Rows(i)("containserrors") = "0"
dataset and grid to view a single table from my database. Later I read an
article about creating a Typed Dataset. I was successful at doing so, but
now the following line of code does not work for looping through the records
of my dataset. Is there something I need to change to now look through a
Typed Dataset with just a single table?
Thanks!
This code used to work with the dataset created with the Data Form Wizard.
It no longer does when I manually coded for a Typed Dataset...
For i As Integer = 1 To TdsXeditGrid.Tables(0).Rows.Count - 1
TdsXeditGrid.Tables(0).Rows(i)("containserrors") = "0"