AD
Administrator
Syncfusion Team
March 12, 2004 02:54 PM UTC
You might try setting the focus to the grid and then calling refresh.
grid.Focus();
grid.Refresh();
You might also need to mak eteh grid teh active control.
this.ActiveControl = this.grid;//here this is the form
IB
Ionut Balas
March 12, 2004 07:36 PM UTC
I've applied all three code lines. It seems to work for now. Thank you again.