Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
645 views

Is this a bug in DataTable API? Changes are stored/executed in the “wrong sequence”

Edit: any comments whether you think this is a .NET bug or not would be appreciated. I have a bug which I've managed to simplify to the following scenario: I have a DataTable where the primary keys ...
1
vote
1answer
747 views

why GetChanges returns something (when bound to a property) even if there are no changes on datatable?

Bound GetChanges always returns something when bound to a usercontrol's property (even on a simple one) i have made a usercontrol, for some reason unknownst to me, when i bound a datacolumn to my ...
0
votes
2answers
779 views

Get DataSet in RowCommand event/Get modified rows in RowCommand

I am trying to get the dataset in RowCommand event. Like this DataTable dt = (DataTable)(gvImages.DataSource); DataTable dtChanges = dt.GetChanges(DataRowState.Modified); But i am getting my ...