Mouse Location - Not Position :RESOLVED
I need to find the mouse cursor location X/Y on my windows control library.
When writing a windows application I can use the following math but it does not work on a control library since I am using internet explorer to view the form instead:
X = MousePosition.X - Me.Location.X
Y = MousePosition.Y - Me.Location.Y
In a windows control library the Me X/Y never changes even if internet explorer is moved. The Mouse X/Y postition is where it is at on the screen not the form.