how to implement undo operation in datagridview
Posted
by ush
on Stack Overflow
See other posts from Stack Overflow
or by ush
Published on 2009-10-26T09:48:01Z
Indexed on
2010/06/09
12:52 UTC
Read the original article
Hit count: 257
Hi, I have created one application in c#.net.Using this application we can update datagridview,now i need to implement undo in it plz give me some ideas.
private void button29_Click(object sender, EventArgs e)
{
Datatable dt;
dt.RejectChanges();
}
using above code i can do undo before updating. but i need a undo feature as in word plz suggest me thanks in advance
© Stack Overflow or respective owner