Move a point.
Good evening,
I used this code to draw a point on the map:
Private Sub Map0_Mousedown (ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Long, ByVal Y As Long)
How do I move it without deleting it and reshape it as I drew other points on the map?
Nicolò
Good evening,
I used this code to draw a point on the map:
Private Sub Map0_Mousedown (ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Long, ByVal Y As Long)
Xx As Double Dim: Dim Yy As Double
Map0.PixelToProj x, Y, Xx, Yy
Map0.NewDrawing (dlSpatiallyReferencedList)
Map0.DrawPoint Xx, Yy, 3, RGB (255, 0, 0)
end SubHow do I move it without deleting it and reshape it as I drew other points on the map?
Nicolò