J
James
I have a DataSet, which I'm manipulating and using to create a DataTable at
runtime. I'm generating all of the Columns and Rows and it binds just fine.
The problem I'm having is I need to create a new *row* on this datatable and
add a row full of DropDownLists at the end (one per cell, per column).
Basically:
Col1 Col2 Col3
data data data
data data data
DDL DDL DDL <---- Need to add these
How can I accomplish this? I'm not that concerned about event handlers, I
just can't figure out what the next logical step is:
Dim dt as DataTable
' misc code here
Dim dr as DataRow
dr = dt.NewRow()
????????
Thanks for any help you can offer.
runtime. I'm generating all of the Columns and Rows and it binds just fine.
The problem I'm having is I need to create a new *row* on this datatable and
add a row full of DropDownLists at the end (one per cell, per column).
Basically:
Col1 Col2 Col3
data data data
data data data
DDL DDL DDL <---- Need to add these
How can I accomplish this? I'm not that concerned about event handlers, I
just can't figure out what the next logical step is:
Dim dt as DataTable
' misc code here
Dim dr as DataRow
dr = dt.NewRow()
????????
Thanks for any help you can offer.