AD
Administrator
Syncfusion Team
January 11, 2005 02:06 PM UTC
So the field you are editing and the TextChanged event is from a TextBox on the Form and has nothing to do with the grid, correct?
Do you get any exceptions being shown in the output window when you see this problem? (You might try setting Break on exception just to be sure.)
If you have the source code, you can use our Assembly Manager to build and set up for use a debug version of our libraries. Then you could run your application in debug. When this problem occurs, you could then try to do a Break All, and get a call stack. This might give some insight into this problem.
Just something to try. Before calling grid.CurrentMoveTo, try calling grid.Focus() to make sure teh grid has focus when you call CurrentCell.MoveTo.
AD
Administrator
Syncfusion Team
January 11, 2005 03:20 PM UTC
Yes I am using a separate TextBox.
Setting the focus of the grid, and the returning the focus to the TextBox after the search fixed the problem.
Thanks