Page 1 of 1

Express Icon Parsed by Inno Installer?

Posted: Mon Apr 08, 2013 6:07 pm
by GeneB
I created a res file consisting of only an icon of my making, a bitmap of my making, and the file information: "CompanyName" =, "LegalCopyright" =, etc.
The icon is properly used throughout my program, the bitmap properly used as a background, and Windows Explorer properly displays my icon and file properties.

When I create a self installation program with Inno and the program is then installed from Inno, and shortcuts are created on the screen by Inno, the unins000.exe (uninstall) program uses my icon but the *.exe program icon is the express icon.

Any idea where Inno is getting the Express Icon?

Re: Express Icon Parsed by Inno Installer?

Posted: Mon Apr 08, 2013 7:31 pm
by rdonnay
In your code you need to use the function DC_IconDefault() to set the icon for your .EXE.

Re: Express Icon Parsed by Inno Installer?

Posted: Mon Apr 08, 2013 8:04 pm
by GeneB
Works.
Thanks.