More information:
I make a change in the UI, the UI code detects the change and calls
EndCurrentEdit on the currency manager.
I have added both a RowChanged event handler and a ColumnChanged event
handler in a business object, for testing purposes.
If I use only a RowChanged handler, the dataset HasChanges() method returns
true (from within the event handler).
If I use only a ColumnChanged handler, the dataset HasChanges() method
returns false.
Can somebody please explain this to me? Am I missing something basic here?
I want to commit my changes back to the data source from within the column
changed handler (after validation), but data adapter Update method obviously
won't do anything since the dataset thinks it has no changes.
The proposed value is as expected in the event arg, by the way.
WNC