how do I access a row within a DataTable object, after marked for deletion using row.Delete()?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how do I access a row within a DataTable object, after marked for deletion using row.Delete()
It seems to throw an exception, even though the data is available if I call The data_table.rejectChanges()

please help, I basically want access to all deleted rows, for reading before calling data_table.acceptChanges()

Thanks in advance
rotemo.
 
There's a useful overload for the datarow property

myDataTable.Rows(rowindex).Item(columnname, DataRowVersion.Original

Bye! :)
 
Back
Top