V vicky May 20, 2004 #1 how can we check in most generic way weather any field or control value is changed on a particular form in C# Thanks
how can we check in most generic way weather any field or control value is changed on a particular form in C# Thanks
M Marc Butenko May 20, 2004 #2 Attach event handlers to each entry field (could be done in a loop on form load) and then in that event handler, set a flag that changes have occurred. Then any time you want to know, you can check the value of that flag.
Attach event handlers to each entry field (could be done in a loop on form load) and then in that event handler, set a flag that changes have occurred. Then any time you want to know, you can check the value of that flag.
V Vicky May 21, 2004 #3 thank for ur help can u please be more specific by giving any code sample for it