Thanks
Tim
Any suggestions on how/where I should be adding the compare logic, (BeforeSave, AfterSave?) to implement this type of logic and how I get access to original values.
Basically I need to execute routines when specific fields have been changed. Example: Automatically create a note on the customer's account when the user changes the credit limit.
Any help is appreciated.
Even if you change the AcceptRowChangeMode to AfterTableSave, the whole table will have been accepted before the AfterSave event has been copied. The only way that I can think to test this would be to copy the CurrentDataTable before the save. If you use CurrentDataTable.Copy() and store the result in a variable, it will take an exact snapshot of the data in the DataTable and you'll be able to use that to get your original values.