views:

49

answers:

1

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?

+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