April 2006
Beginner
1114 pages
98h 16m
English
form.MouseIcon [= setting]
Sets or returns a custom picture used as the mouse pointer. The following code displays a magnifying glass as the mouse pointer:
Private Sub UserForm_Initialize( )
' Change mouse pointer.
Me.MousePointer = fmMousePointerCustom
Me.MouseIcon = LoadPicture(ThisWorkbook.Path & "\magnify.ico")
End SubRead now
Unlock full access