RowState Undelete?

  • Thread starter Thread starter localhost
  • Start date Start date
L

localhost

A row was deleted in a DataTable, and now I want to bring it back so I
can remove it (so my dataadapter will not touch it later).

How can I do that?

Thanks.
replaceExisting
 
Hi,

I suppose you want to undo the delete. To do so, call the RejectChanges
method of the datatable so that the row gets back its original state.

If you want anything else, let me know.

Thanks
Joyjit
 
Thanks.
I am on my way!


Hi,

I suppose you want to undo the delete. To do so, call the RejectChanges
method of the datatable so that the row gets back its original state.

If you want anything else, let me know.

Thanks
Joyjit
 
Back
Top