Oct 24, 2007 #1 plopez Technical User Apr 2, 2002 66 CL Hello, I need to know how I can synchronize two or more MSFlexgrids simultaneously using the vertical scroll bar through VB6 code. Thanks for your help
Hello, I need to know how I can synchronize two or more MSFlexgrids simultaneously using the vertical scroll bar through VB6 code. Thanks for your help
Oct 24, 2007 1 #2 harebrain MIS Feb 27, 2003 1,146 US Use the scroll event in each grid to set the TopRow properties the same. E.g., with the first grid, Code: Private Sub MSFlexGrid1_Scroll() MSFlexGrid2.TopRow = MSFlexGrid1.TopRow End Sub and vice versa for the second grid. Upvote 0 Downvote
Use the scroll event in each grid to set the TopRow properties the same. E.g., with the first grid, Code: Private Sub MSFlexGrid1_Scroll() MSFlexGrid2.TopRow = MSFlexGrid1.TopRow End Sub and vice versa for the second grid.
Oct 24, 2007 Thread starter #3 plopez Technical User Apr 2, 2002 66 CL thanks harebrain ... a good solution for my App. Upvote 0 Downvote