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?
views:
125answers:
1
A:
Problem is solved using DataSourceUpdateMode.OnPropertyChanged in Binding.
Armagan
2009-01-31 11:45:53