Hey guys, if anyone could help id be thankful!
Got a bit of code which gets the mouse co-ords when you move the mouse over the picture object.
Private Sub picture1_Mousemove(Button As Integer, Shift As Integer, X As Single, Y As Single) MsgBox X & "|" & Y End Sub |
But it doesnt give out the co-ordinates when I do a mouseclick on the picture object, which is what I really need! This doesnt work:
Private Sub picture1_Mouseclick(Button As Integer, Shift As Integer, X As Single, Y As Single) MsgBox X & "|" & Y End Sub |
Anyway thanks for any quick help on the matter