if (dr.RowState == DataRowState.Modified), it comes back false. The rowstate appears unchanged.
Hi sbb894,
I had a similar problem. I used Value changed event to call some function for setting other values in a grid which depends on my new value of the ultra option set. My problem was, that the underlying datasource was not yet updated in value changed event. What I have done now was to set "causes validation" back to "true" on uos (and still have update mode on property changed) and I now use _Validated event of the option set. Here it seems that the binding source is already updated. I assume value changed is maybe too early for updating the binding source, but I am not sure. For my issue here its working.
Maybe it also helps you,
Alex