I have a listview working in virtual mode, in the LargeIcons view. Retrieves are expensive, so I want to ask for the data for all the visible items. How do I get the start
I know this post is old ..... Wrong
MyScrollViewer = FindDescendant(MyListView, ScrollViewer)
Right is:
Dim Myscrollviwer As ScrollViewer Myscrollviwer = FindDescendant(myListView3, GetType(ScrollViewer)) MsgBox(Myscrollviwer.VerticalOffset)