ok im trying to create cursor using gdi. i can’t even find tutorial how to use customize cursor, i can find so many tutorials for c#. all i know that i use these two functions to set cursor,setcursor and loadcursor that is it
thanks
Rami
ok im trying to create cursor using gdi. i can’t even find tutorial how
Share
You can create your own cursor using CreateCursor(). The last two parameters defined the actual pixel data. This gives you a HCURSOR handle.
Once created, you can use it with SetCursor(HCURSOR handle).