Mouse position without events

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I need to detect mouse position without events. In some places in code I need to get position but mouse didn't do anything(click,move...).

Thanks
 
use MousePosition property to get subj

systemspecialist said:
Hi,
I need to detect mouse position without events. In some places in code I
need to get position but mouse didn't do anything(click,move...).
 
The MouseProperty property is a public static (shared in VB) method in class
System.Windows.Forms.Control, so you can use it from anywhere.

Manfred.
 
Back
Top