views:

125

answers:

1

I have TextBox controls on a WinForm bound to a BindingSource. If I set CausesValidation = false on these controls it doesn't update data source on tableAdapter.Update() method. I know that Control.Validating event does this saving but how can I update source if CausesValidation is disabled?

A: 

Problem is solved using DataSourceUpdateMode.OnPropertyChanged in Binding.

Armagan