In the vba window (or form design window) right-click on the textbox and
select "View Code"
the right-upper pull-down probably is at the "change" event.
Pull down to the MouseMove event.
It will create a new event.
For a textbox called "machno" I created:
Private Sub Machno_MouseMove(ByVal Button As Integer, ByVal Shift As Integer,
ByVal X As Single, ByVal Y As Single)
Application.StatusBar = "X = " & X & ", Y = " & Y
End Sub
Which continually updates the Status bar with the X and Y position of the mouse.
Be careful, this continually calles the macro while the mouse is in motion!
if you do much with this macro, it may become unwieldy!