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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top