bernardmanning
Programmer
Hi, this is not really a problem just looking for some reassurance that what I'm doing is correct.
I've got a win form that is using a dataadapter/dataset and a datatable that returns data from sql server.
My controls are bound using the bindmanager and every thing works great, navigation and saves etc.
One thing I'm seeing is that if I make a change to a record via a text box on my form and try to save the edit without moving the record pointer the save doesn't get back into my data table.
If I move off the record and back again and save it works fine.
I've got round this problem by calling ;
Code:
BindingContext(mytable).EndCurrentEdit()
Code:
dataadapter.Update ;
method.
Is this what everybody else has had to do? or am I missing something?
Thanks in advance, bernard...