I’m programming one easy C# application, and i need onScroll event on Listview. So i created class ListviewEx witch inherits original ListView. I found how to detect scroll
Thank you for you cool contribution
I think you forgot to handle horizontal scroll
Case WM_HSCROLL
Dim sargs As New ScrollEventArgs(ScrollEventType.EndScroll, GetScrollPos(Me.Handle, SB_HORZ))
RaiseEvent OnScroll(Me, sargs)
Exit Select