Folks,
I have to add both vertical and horizontal scrollbars in a userform, so far I have this code below for horizontal scrollbars only.
The second, how set the position of top scrollbar (vertical) and left scrollbar (horizontal) so it could like a freeze pane?
Thank you for your help and assistance
Best regards,
Prima
I have to add both vertical and horizontal scrollbars in a userform, so far I have this code below for horizontal scrollbars only.
Code:
Private Sub UserForm_Activate()
With Me
.ScrollBars = fmScrollBarsHorizontal
.ScrollWidth = .InsideWidth * 1.5
End With
End Sub
The second, how set the position of top scrollbar (vertical) and left scrollbar (horizontal) so it could like a freeze pane?
Thank you for your help and assistance
Best regards,
Prima