dataset.haschanges=false allthough change have been made

  • Thread starter Thread starter Christoph Begrner
  • Start date Start date
C

Christoph Begrner

I have the following problem:


I have a dataset with one table. I bind the fields of the table to several
entities like textboxes etc.

Now I change the values of a row of the table through the textboxes.
The value in the table of my dataset has changed (I checked it) but my
dataset still has the status .haschanges=false??? Why?


Regrads,
Christoph
 
You need to call EndCurrentEdit on the bindings in order
to keep the updated values.
 
Back
Top