HasChanges With Bound Combo For Record Selector?

  • Thread starter Thread starter James Goodman
  • Start date Start date
J

James Goodman

I have a CF application which is based loosely on the NorthwindCE sample.
The user can select records using a bound combo.

If the user selects a record using the combo, and then dataset.HasChanges is
tested, it always evaluates to true, even though no actual data changes have
been made.

Is there a way of finding out what field it thinks was modified?
Does this sound like correct behaviour?
Any ideas for a fix?
 
The problem seems to relate to data-bound bit fields:

I have a bit field which is databound (via the checked property) to a
checkbox control. This is the control which is somehow throwing the
Dataset.HasChanges property incorrectly.
 
Back
Top