Reset DataSet.HasChanges to False [C#]

Shaitan00

Well-known member
Joined
Aug 11, 2003
Messages
343
Location
Hell
Given a DataSet Rec in C#, I use the Rec.HasChanges property to determine if the information needs to be saved (on user request). This works out fine however after actually saving the values, Rec.HasChanged needs to be set back to False (changes were saved).

How could I accomplish resetting this property?
I tried doing it directly and get the following error:
 
Back
Top