Home All Groups Group Topic Archive Search About
Author
21 Aug 2006 4:57 PM
Mark
Hello,

Is there a way to check the original value of a dataset column after its
been changed prior to saving?

Any help greatly appreciated!
Thanks in advance.

Author
21 Aug 2006 6:35 PM
Kerry Moorman
Mark,

Here is an example.  I have a "Movies" datatable (in a dsMoviesToGo dataset)
that has an "MPAARating column.  Here is how I can check the original value
of the MPAARating column for row 0 of the datatable before saving:

MsgBox(dsMoviesToGo.Tables("Movies").Rows(0).Item("MPAARating",
DataRowVersion.Original))

Kerry Moorman


Show quoteHide quote
"Mark" wrote:

> Hello,
>
> Is there a way to check the original value of a dataset column after its
> been changed prior to saving?
>
> Any help greatly appreciated!
> Thanks in advance.