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.
[COLOR=blue]Private Sub ListView1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Dim lp As Integer
Do Until ListView1.ColumnHeaders(lp + 1).Left > X Or lp + 1 = ListView1.ColumnHeaders.Count
lp = lp + 1
Loop
Debug.Print "Col: " & lp
lp = 0
Do Until ListView1.ListItems(lp + 1).Top > Y Or lp + 1 = ListView1.ListItems.Count
lp = lp + 1
Loop
Debug.Print "Row: " & lp
[COLOR=green]' Following would also return row, but not column
' as, unlike the .NET listview, there is no SubItem index
' Debug.Print ListView1.HitTest(X, Y).Index[/color]
End Sub[/color]