LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

I also want a custom mouse cursor, how do I use a custom .cur file as the mouse cursor?"

Where are all the artsi-crafsi creative people. I too would like to add my own .cur file for the mouse cursor during my application. Can this be done?
0 Kudos
Message 1 of 2
(2,571 Views)
Here's a very short sample that works :

HCURSOR hCursor;


hCursor = LoadCursorFromFile( va_psFile );
if( hCursor==NULL )
return FALSE;


SetCursor( hCursor );
ShowCursor( TRUE );"
0 Kudos
Message 2 of 2
(2,571 Views)