Hi all,
I am trying to get the Mouse Coordinates that are relative to my form. At the moment I am using:
xs = Cursor.Position.X;
ys = Cursor.Position.Y;
However this doesn't get the "local" form mouse coordinates. My form is x = 640 y = 480. And I want to be able to take the x and y positions when a user clicks down.
Thanks
-Erslich