No sirve ninguno de los links
EDITO:
Tecla F1 Captura la posicion actual del mouse y las anota en los Textbox
EDITO:
Código [Seleccionar]
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.KeyPreview = True
End Sub
Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown
If e.KeyCode.ToString = "F1" Then
Me.KeyPreview = True
System.Threading.Thread.Sleep(2000)
TextBox1.Text = System.Windows.Forms.Cursor.Position.X
TextBox2.Text = System.Windows.Forms.Cursor.Position.Y
End If
End Sub
Tecla F1 Captura la posicion actual del mouse y las anota en los Textbox