Part | Description | |
object | Required. A valid object. | |
fmScrollBars | Optional. Where scroll bars are displayed. |
Constant | Value | Description | ||||||||||
fmScrollBarsNone | 0 | Displays no scroll bars. | ||||||||||
fmScrollBarsHorizontal | 1 | Displays a horizontal scroll bar. | ||||||||||
fmScrollBarsVertical | 2 | Displays a vertical scroll bar. | ||||||||||
fmScrollBarsBoth | 3 | Displays both a horizontal and a vertical scroll bar (default). |
Private Sub UserForm_Initialize()
MultiPage1.Pages(0).ScrollBars = fmScrollBarsBoth
MultiPage1.Pages(0).KeepScrollBarsVisible = fmScrollBarsNone
Frame1.ScrollBars = fmScrollBarsBoth
Frame1.KeepScrollBarsVisible = fmScrollBarsNone
OptionButton1.Caption = "No scroll bars"
OptionButton1.Value = True
OptionButton2.Caption = "Horizontal scroll bars"
OptionButton3.Caption = "Vertical scroll bars"
OptionButton4.Caption = "Both scroll bars"
End Sub
Private Sub OptionButton1_Click()
MultiPage1.Pages(0).KeepScrollBarsVisible = fmScrollBarsNone
Frame1.KeepScrollBarsVisible = fmScrollBarsNone
End Sub
Private Sub OptionButton2_Click()
MultiPage1.Pages(0).KeepScrollBarsVisible = fmScrollBarsHorizontal
Frame1.KeepScrollBarsVisible = fmScrollBarsHorizontal
End Sub
Private Sub OptionButton3_Click()
MultiPage1.Pages(0).KeepScrollBarsVisible = fmScrollBarsVertical
Frame1.KeepScrollBarsVisible = fmScrollBarsVertical
End Sub
Private Sub OptionButton4_Click()
MultiPage1.Pages(0).KeepScrollBarsVisible = fmScrollBarsBoth
Frame1.KeepScrollBarsVisible = fmScrollBarsBoth
End Sub