Pointer Coordinates

  • Thread starter Thread starter Brian Rypstra
  • Start date Start date
B

Brian Rypstra

Is thre any way I can use code to determine the position of the users mouse
pointer as co-ordinates in a form?

Thanks in advance
 
Hello Brian,

You can use the MouseMove event to determine where the mouse is at a certain
time (and which button was pressed). Check out the Help Files to get more
info.

HTH,

Neil
 
Hi Brian,

I replied earlier but my post appears to be 'lost'
apologies forduplication if it appears eventually.

You can use any of the 'On Mouse....' events on a Form to
track the mouse position based on x/y co-ordinates that
are passed into the event by the system. Build a code
event for one of them and take a look at the arguments for
the event.

hth

chas
 
Back
Top