I'm trying to get the cursor into an image so I can draw it in multiple locations. So far I have only seen HCURSOR as the handle for a cursor. Is there a way to draw it onto something or somehow make a bitmap out of a cursor? I know it's a weird question. :P
i'm guesing a HCURSOR should have the same properties as HBITMAP
why not try and blit it ?
You're looking for misnamed DrawIconEx which takes the handle of an icon or cursor and draws into a DC.
(http://msdn2.microsoft.com/en-us/library/ms648065.aspx). (The linkify button ain't working.)
That worked! Thanks muchly! :lol: