I mean atm Im just using api's,but what do you think is the easiest way to grab the coordinates on screen in a form/out of a form.
Mouse X/Y in your form
Code:
Private Sub Form1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseMove
Label1.Text = "X = " & e.X & vbCrLf & "Y = " & e.Y
End Sub
and how would you go about getting the coordinates from outside a form. ?