AD
Administrator
Syncfusion Team
January 22, 2004 06:29 AM UTC
Try sandwiching your code with these calls:
grid.BeginUpdate();
grid.Binder.SuspendBinding();
//your code
grid.Binder.ResumeBinding();
grid.EndUpdate()
//and possibly (if needed)
//grid.Refresh();