vote up 4 vote down star
3

I want to use Vista Large Icon feature in my Delphi 2009 application, but I can only embed the normal 32x32 icon in my application. How can I make application have many sizes of Icons?

Thanks

flag

8 Answers

vote up 4 vote down check

Go download IcoFX. It's free and handles multiple sizes/colour depths AND proper alpha blending. Use that to create your ICO file, then add the ICO to your project. Can't give you a blow-by-blow of the steps for loading the ICO in 2009, because I'm stuck using Delphi 7...

If it's any consolation, Visual Studio has taken eons to get anywhere near decent icon editing too.

Hey, who remembers the Borland Resource Workshop ?

link|flag
oh my it brings back memories... and chills blad.files.wordpress.com/2008/02/rw.gif – John T Feb 24 at 23:15
2  
It rocked my world, when I had more hair and my back didn't hurt so much :-) – Bob Moore Feb 25 at 15:33
vote up 2 vote down

I would use a icon editor such as AWIcons which allows you to create an icon that contains many different formats. Windows will then decide, based on the current view and color depth, which icon to use.

Once you have created your SINGLE icon with many different embedded formats, just link it like you would your 32x32 icon. It might look funny in the IDE, but when you run the program it will look correctly.

link|flag
vote up 1 vote down

If your are wanting some free software to create icons then you can probably use GIMP. My very first video tutorial was using GIMP to create icons - it's available here.

link|flag
vote up 1 vote down

Get a decent stock of icons, or make your own. I use an the icon library from Icon Experience - your pay, but all icon sizes 16x16 up to 256 x 256 are provided in ICO and PNG formats. I then use Icon Sushi to work with my own icons. Delphi 7 and 2009 both have limitations working with large icons, so I've moved to using PNG icons using the PNG components library. This gives you a TPNGImageList that just works where the Vista cacheing and other problems make using TImageList only really good for 16x16 and 32x32 sizes. I've also ported PNGComponents to D2009 where it works fine. Brian

link|flag
vote up 0 vote down

Does this tutorial help?

link|flag
Some of the comments suggest changing the resource type to Windows Resource compiler, and installing the lastes Microsoft Windows SDK. I still can't find how to place additional Icon sizes into my project. – Kenny Feb 23 at 18:48
vote up 0 vote down

I can only embed the normal 32x32 icon in my application

From my experience, Delphi 2009 lets you use any icon. I've used extra large Vista icons too, and it worked.

link|flag
vote up 0 vote down

Configure the project to use the Microsoft resource compiler.

link|flag
vote up 0 vote down

Do you need Vista as the host OS? Because Delphi 2009 for me is installed on my XP machine. I too have it showing the wrong icons even if I select the MS resource compiler.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.