Saving current edits

  • Thread starter Thread starter lc
  • Start date Start date
L

lc

Pardon this newbie question: I have a user control with a bunch of
textboxes bound to a DataView drawing from a DataSet in a different
class. Data display works fine, but the changes don't seem to get
posted to the underlying table; hence, DataSet.HasChanges always
returns false. What am I missing?

TIA

lc
 
You are missing BindingManagerBase.EndCurrentEdit method.
Data isn't commited to dataset until you change row or call the above
method.
 
Back
Top