Hi verybody, i'm trying to use high-res icons on my program, but when i load the high-res icon onto a 64x64 button doing this:
invoke LoadIcon,hInstance,5002
invoke SendMessage,Temp,BM_SETIMAGE,IMAGE_ICON,eax
The icon just appears as 32x32 and i want to see it 64x64, does the IMAGE_ICON const has something to do..? :sad:
I would really appreciate any answer :D
invoke LoadIcon,hInstance,5002
invoke SendMessage,Temp,BM_SETIMAGE,IMAGE_ICON,eax
The icon just appears as 32x32 and i want to see it 64x64, does the IMAGE_ICON const has something to do..? :sad:
I would really appreciate any answer :D
use LoadImage instead
invoke LoadImage, hInstance, icon_ID, IMAGE_ICON, 64, 64, 0
invoke LoadImage, hInstance, icon_ID, IMAGE_ICON, 64, 64, 0
Thank you arafel ;)