If I understand correctly, the following event handler code (for testing only) should print out the time on the debug window every time the mouse is moved event when outside the Textbox bounderies.
Code:
Private Sub TextBox1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
If Not pvGetCapture() Then
pvSetCapture True
End If
Debug.Print Time
End Sub
But ,the time is only printed once upon entering the textbox.
I am testing this on an excel userform with a single windowless textbox on it.