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

Re: Saving current edits by Miha

Miha
Sat Jun 19 03:36:25 CDT 2004

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

--
Miha Markic [MVP C#] - RightHand .NET consulting & development
miha at rthand com
www.rthand.com

"lc" <lcdata@hotmail.com> wrote in message
news:8op6d0589i95073v7jf4v9rl3v8f21hfkh@4ax.com...
>
> 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



Re: Saving current edits by lc

lc
Sat Jun 19 11:18:39 CDT 2004


Thanks.