Procedure Name | Type | Description |
(Declarations) | Declarations | Declarations and private variables for the modMouse module. |
GetMousePointer | Procedure | Get the current mouse pointer setting. |
SetMousePointer | Procedure | Set the mouse pointer. |
' Example of modMouse ' ' To use this example, create a new module and paste this code into it. ' Then run the procedure by putting the cursor in the procedure and pressing: ' F5 to run it, or ' F8 to step through it line-by-line (see the Debug menu for more options) #If VBA7 Then Private Declare PtrSafe Sub Sleep Lib "kernel32" (ByVal lngMilliSeconds As Long) #Else Private Declare Sub Sleep Lib "kernel32" (ByVal lngMilliSeconds As Long) #End If Private Sub Example_modMouse() ' Comments: Example of using the modMouse module to modify the mouse pointer beyond the Hourglass in Access VBA. ' Run this procedure and see how it impacts the shape of the mouse when it's hovering over the Access database (not code) Dim lngPointer As Long Dim intLoop As Integer Dim eMousePointer As enmAccessMousePointer lngPointer = GetMousePointer Debug.Print "Mouse Pointer: " & lngPointer For intLoop = 1 To 6 Select Case intLoop Case 1 eMousePointer = ampBusy Case 2 eMousePointer = ampVerticalResize Case 3 eMousePointer = ampHorizontalResize Case 4 eMousePointer = ampTextSelect Case 5 eMousePointer = ampNormalSelect Case 6 ' Ends with default eMousePointer = ampDefault End Select ' Example of SetMousePointer Debug.Print "Changing the Mouse Pointer for 1 second..." SetMousePointer eMousePointer Debug.Print "Mouse Pointer: " & GetMousePointer ' Pause between pointers Sleep 1000 Next intLoop End Sub
The source code in Total Visual Sourcebook includes modules and classes for Microsoft Access, Visual Basic 6 (VB6), and Visual Basic for Applications (VBA) developers. Easily add this professionally written, tested, and documented royalty-free code into your applications to simplify your application development efforts.
Total Visual SourceBook is written for the needs of a developer using a source code library covering the many challenges you face. Countless developers over the years have told us they learned some or much of their development skills and tricks from our code. You can too!
Supports Access/Office 2016, 2013, 2010 and 2007, and Visual Basic 6.0!
"The code is exactly how I would like to write code and the algorithms used are very efficient and well-documented."
Van T. Dinh, Microsoft MVP