Hi,
>I load a table into a dataset and when I click my SAVE button, I get the
>changes like this:
[quoted text clipped - 5 lines]
> DataRowVersion.Current values. If they were different I would display the
> differences in a listbox for me to see.
Even when you assign the _same_ value to a certain row/field then the row
will be marked as modified. So even when all Original values are the same
as Current values the row can still be in a modified state.
So something is actuallly setting the same values. Could be caused by
binding to a Control property that doesn't have a Changed event or a Changed
event that fires even when the new property value is the same as the old
one.
Or maybe you're assigning the same values yourself somewhere, hard to say
without more information.
HTH,
Greetings
> What's happening is that the listbox contains no changes, unless I really
> do change a field... then my change does show.
[quoted text clipped - 5 lines]
>
> John