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.
Public Class myListView
Inherits ListView
Private Const SBM_SETSCROLLINFO As Integer = &HE9
Private Const WM_HSCROLL As Integer = &H115
Private Const WM_VSCROLL As Integer = &H114
Public Event Scroll(ByVal sender As Object, ByVal e As EventArgs)
Protected Sub OnScroll()
RaiseEvent Scroll(Me, EventArgs.Empty)
End Sub
Protected Overrides Sub WndProc(ByRef m As Message)
MyBase.WndProc(m)
If m.Msg = WM_HSCROLL Or m.Msg = WM_VSCROLL Or m.Msg = SBM_SETSCROLLINFO Then
OnScroll()
End If
End Sub
End Class