Ok. I was under the impression that when you databound a control to a BindingSource, the BindingSource should handle the updating of the DataSet.
I have a TextBox bound to anullabledateTime field in a BindingSource. If I make any changes to the date it updates the DataSet and database just fine. But if I DELETE the date in the TextBox, I get no error but the DataSet never shows pending changes. I am also manually calling EndEdit() on the BindingSource.
So what gives? HOW do I propagate this deletion to the BindingSource then the DataSet as a change? I am getting down into the real nuts and bolts of the BindingSource, converting out the DataRowView and trying to remove the data in there, but there MUST be an easier way.
Thanks
Kurt