I'm using RadControls for winforms Q2 2010 SP2.
I've heard rumours that if i install a newer version of the control some methods stop working. Thats why i'm hesitasting on istalling a newer version.
What happens is that in page_load i call a method that populates the control, this works fine:
datagridview1.DataSource = class1.DataSet.Tables[0];
Then when i insert a new row via:
private void datagridview1_UserAddedRow(object sender, Telerik.WinControls.UI.GridViewRowEventArgs e) {
//... Do insert methods here...
//... Do the gridview update:
datagridview1.DataSource = class1.DataSet.Tables[0];
}
This gives the messageboxes i referred to earlier.