AD
Administrator
Syncfusion Team
March 3, 2004 09:24 PM UTC
In your sample that I have, th eproblem appears to be that the grid is actually scrolled to the left, only showing the right 2 columns.
I was able to avoid the problem by adding a line in your Sub phraseGrid1_CurrentCellShowingDropDown
method.
I added the line below:
Me.correctionGrid3.DataSource = dv ''existing line ......
Me.correctionGrid3.CurrentCell.MoveTo(1, 1, GridSetCurrentCellOptions.ScrollInView) ''added ....