Code:
   Private Sub RectangleShape1_MouseEnter(ByVal sender As Object, ByVal e As System.EventArgs) Handles RectangleShape1.MouseEnter
        Cursor.Position = New Point(3, 3)
    End Sub
This returns the Cursor Position outside the form.

How do I make it so it goes to this position at the top left corner of the form instead of the top left of the screen?