Search found 3 matches

by Nikse
Sun Nov 21, 2004 4:15 pm
Forum: madBasic
Topic: Change Icon of compress Application...
Replies: 6
Views: 23388

UPX has an option (--compress-icons=0) that will make it work:

Code: Select all

upx --compress-icons=0 -9 <exe file>
by Nikse
Mon Nov 15, 2004 11:15 pm
Forum: madBasic
Topic: madRes - saving .ico file
Replies: 3
Views: 11604

Thx, great! Almost there... I think. Enumeration is working (according to ResHacker). I can save the main icon like this: result := SaveIconGroupResourceW(resUpdateHandle, 'MAINICON', 0, 'c:\test.ico'); But how do I save an icon called "74" from RT_ICONS? result := SaveIconGroupResourceW(r...
by Nikse
Sat Nov 13, 2004 9:05 pm
Forum: madBasic
Topic: madRes - saving .ico file
Replies: 3
Views: 11604

madRes - saving .ico file

Hi ! madRes looks very nice indeed. I've written a small icon grabber using ExtractIcon(Ex) to list all icons in an .exe file... but delphi's built in TIcon cannot save icons in WinXP alphablended format (or even in 256 colors). Is this (listing all icons + saving) possible using madRes... and how (...