Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
RejectChange
Message
 
To
All
General information
Forum:
ASP.NET
Category:
Other
Title:
RejectChange
Miscellaneous
Thread ID:
00966480
Message ID:
00966480
Views:
46
I'm doing a RejectChange() on a DataTable and the controls bounded to it to not refresh with the old data. If i redo the binding for the control, the binding is fine.

there's probably things i'm not doing right...?

Here a bit what i'm doing:
textbox.Bindings.Add("Text", Table1, "Name");
textbox.Text = "Some new data";
Table1.RejectChange();
// testbox does not refresh...
textbox.Bindings.Clear();
textbox.Bindings.Add("Text", Table1, "Name");
// textbox now contains the old data.
Next
Reply
Map
View

Click here to load this message in the networking platform