how to get the current position (x and y coordinates) of cursor?

bagsrocq

Member
Joined
Feb 4, 2011
Messages
7
Programming Experience
3-5
how can i get the current position of the cursor in real time inside a picturebox?
any ideas?
 
Handle the MouseMove event for the Picturebox and get e.Location.
 
Back
Top