Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
We ran into some strange occurances like this as well with some of our forms in the DDT. Basically, you want to customize your business object to add the Field Property Changed events (either single event or unique event will do) and move your code from the nud.ValueChanged to the FieldChanged event of the field bound to that control. Basically, the BindingContext of the form tries to refresh the controls when the data changes, which changes the controls, and it tries to push the data back to the business object causing it to become dirty. So, just move your handler to the data and you should be good to go.
|