MPW
Well-known Member
- Joined
- Oct 7, 2009
- Messages
- 571
- Office Version
- 365
- Platform
- Windows
Hey All,
Using Office 2003.
I have 2 Parallel frames.
One has a vertical scroll bar, the other acts as a heading for the 1st frame.
I have been trying to have the heading frame scroll in conjunction with the other frame when it is scrolled.
I tried this to no avail:
I do not know if I am using ScrollLeft correctly. It might have a whole other purpose then what I am using it for.
Any ideas?
Thanks
Using Office 2003.
I have 2 Parallel frames.
One has a vertical scroll bar, the other acts as a heading for the 1st frame.
I have been trying to have the heading frame scroll in conjunction with the other frame when it is scrolled.
I tried this to no avail:
Code:
Private Sub Frame1_Scroll(ByVal ActionX As MSForms.fmScrollAction, ByVal ActionY As MSForms.fmScrollAction, ByVal RequestDx As Single, ByVal RequestDy As Single, ByVal ActualDx As MSForms.ReturnSingle, ByVal ActualDy As MSForms.ReturnSingle)
UserForm1.Frame2.ScrollLeft = UserForm1.Frame1.ScrollLeft
End Sub
Any ideas?
Thanks