Hello,
I have created multiple tables in a dataset when I load a page. Some of the information for those tables are on a form. After making changes to the data on the form, I want to go back to those datatables to write to the SQL table.
Here is my code that I currently have. It is getting zero rows. I am not sure how to correct.
Public dsAssessment As DataSet
Public cnn As OleDbConnection = New OleDbConnection
Public ds As New dsAssessment
Dim tbl As New DataTable
tbl = New dsAssessment.dtMemberDataDataTable
iCount = tbl.Rows.Count
If I remove the "New" on the tbl assignment, it gives me the error "dtMemberDataDataTable is not a member of 'System.Data.Dataset'"
Any help would be greatly appreciated.
Eddi Rae