i print this little circles on image with:
Now, with mousemove event how to intercept when cursor is on the red circle, and get .name?
Code:
For I = 0 To UBound(Route) - 1
With Route(I)
Picture1.Circle (.LNG, .LAT), 0.07, vbRed
Picture1.CurrentY = Picture1.CurrentY + 0.25
Picture1.Print I & ")" & .Name
End With
Next]
Now, with mousemove event how to intercept when cursor is on the red circle, and get .name?