Delphi: Why .exe use resource icon instead of application icon

Post Reply
tong
Site Admin
Posts: 2387
Joined: Fri 01 May 2009 8:55 pm

Delphi: Why .exe use resource icon instead of application icon

Post by tong »

Snap3804.png Because Delphi store the resource icons alphabetically.
The application icon is name MAINICON.
Try to rename the other resource icons to something below M character.

Code: Select all

SICO0 ICON "icon\Cpu_0.ico"
SICO1 ICON "icon\Cpu_1.ico"
SICO2 ICON "icon\Cpu_2.ico"
Post Reply