im trying to set a cursor. the width and the height of the cursor is bigger than 32 px. but it just scale it down to 32px when i set it.
any idea?
views:
49answers:
1
+1
A:
If you're using the LoadCursor
function, then I think you'll always get scaled to the standard size.
Try using LoadImage
with IMAGE_CURSOR
, a desired size of (0,0), and do not use the LR_DEFAULTSIZE
flag.
Adrian McCarthy
2010-08-24 21:58:22