FYI
I found this at the UtterAccess Web site - It was submitted by Candace Tripp.
Public Function SetMousePointer(intPointer As Integer) As Boolean
' Comments : sets the mouse pointer
' Parameters: intPointer - 0 (Default) The shape is determined by Microsoft Access
' 1 Normal Select (Arrow)
' 3 Text Select (I-Beam)
' 7 Vertical Resize (Size N, S)
' 9 Horizontal Resize (Size E, W)
' 11 Busy (Hourglass)
' Returns : True if successful, False otherwise
On Error GoTo err_SetMousePointer
Application.Screen.MousePointer = intPointer
SetMousePointer = True
exit_SetMousePointer:
Exit Function
err_SetMousePointer:
SetMousePointer = False
Resume exit_SetMousePointer
End Function
HTH
Chris