Re: VB: working with 2 grids
Welcome to the forums. :wave:
This is a pure guess on my part. I don't use Grids so I really don't have anything to test it on, but if I were going to try this, I would do something like
Code:
Private Sub MSHFlexGrid1_Scroll()
MSHFlexGrid2.TopRow = MSHFlexGrid1.TopRow
End Sub
Private Sub MSHFlexGrid2_Scroll()
MSHFlexGrid1.TopRow = MSHFlexGrid2.TopRow
End Sub
Re: VB: working with 2 grids
First , thank you, for Help and Welcomesssss
My Grid have not this property TopRow, because I use another Grid, is it right?
What version of VB and what grid do you use ? I dont know the MSFlexGrid.;
But I can do of the follow way:
Code:
grid1.FirstDisplayedScrollingRowIndex = grid2.FirstDisplayedScrollingRowIndex
For sure I implement this of the another way, but...resolved!
Thankyou´s