To Change the System Cursor
API Declarations
Private Declare Function LoadCursorFromFile Lib "user32" Alias "LoadCursorFromFileA" (ByVal lpFileName As String) As Long
Private Declare Function SetSystemCursor Lib "user32" (ByVal hcur As Long, ByVal id As Long) As Long
Private Const OCR_NORMAL = 32512 'Standard Mouse Cursor
Private Const OCR_WAIT = 32514 'Hour Glass
Private Const OCR_NO = 32648 'NO Cursor
Dim hCursor As Long 'To Store the Handle of the Cursor
'To Store the Path of the Cursor File or ANImated Cursor file
Dim CurPath As String