Basta fare così:

codice:
    Private Sub Panel_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel4.MouseDown
        MsgBox(e.X + " - " + e.Y)
End Sub
Le coordinate ottenute si riferiscono al Panel, non al form.


Ciao