Original DS Values

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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
 
Back
Top