Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Option Explicit
Private Sub ScrollBar1_Change()
MsgBox "Change - Value: " & ScrollBar1.Value
End Sub
Private Sub ScrollBar1_Scroll()
TextBox1.Value = ScrollBar1.Value
End Sub
Option Explicit
Private Sub ScrollBar1_Change()
Call ProcessNewScrollPosition(ScrollBar1.Value)
End Sub
Option Explicit
Sub ProcessNewScrollPosition(NewScrollPosition As Long)
MsgBox "User has scrolled to position " & NewScrollPosition
End Sub
Private Sub ScrollBar1_KeyUp(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
MsgBox KeyCode & " " & Shift
End Sub