VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

To Change the System Cursor

Raghu  (22 Submissions)   Windows System Services   VB 6.0   Unknown Difficulty   Fri 31st August 2001   Mon 8th February 2021

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

Rate To Change the System Cursor (1(1 Vote))
To Change the System Cursor.bas

To Change the System Cursor Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters