I get 0's??
However, I have a work around, in the absence of the correct way to do this. Create a new project with one form and add the following code to the form module:
Option Explicit
Dim CurrX As Single
Dim CurrY As Single
Private Sub Form_Click()
MsgBox CurrX
MsgBox CurrY
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
CurrX = X
CurrY = Y
End Sub
Run the project and click on the form.
Simon