I have a small demo WinForms app. One of the Forms is my Add New Person form. I used the Details View instead of the DataGridView
from my Data Sources. When I e
You don't need to change the position, in fact you need to call BindingSource.EndEdit that applies pending changes to the underlying data source.
Changing the position causes the underlying currency manager calls EndCurrentEdit
and this is what the EndEdit
method of binding source does for you.