Click x and y position

Is that possible to get X and Y position when click on a picture control?

Thanks
Teo

Yes - here’s how:

Function PictureBox1_onclick(event)
  Msgbox event.x & ", " & event.y
End Function
1 Like