DLL Cursor

K

Kevin

How do I get a list of the cursors in Function
LoadCursorBynum Lib "user32" or how can I create custom
cursors.

Code:
Public Const IDC_APPSTARTING = 32650&
Declare Function LoadCursorBynum Lib "user32"
Alias "LoadCursorA" _
(ByVal hInstance As Long, ByVal lpcursorName As Long)
As Long

Declare Function LoadCursorFromFile Lib "user32" Alias _
"LoadCursorFromFileA" (ByVal lpFileName As String) As
Long

Declare Function SetCursor Lib "user32" _
(ByVal hCursor As Long) As Long
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top