Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: bijan311 on February 01, 2010, 05:54:14 am

Title: changing the icon
Post by: bijan311 on February 01, 2010, 05:54:14 am
I changed an icon of one of my programs compiled in code blocks using a program, but when i compiled it again, it reverted to the default icon. Is there a way to fix this?
Title: Re: changing the icon
Post by: MortenMacFly on February 01, 2010, 07:33:58 am
Is there a way to fix this?
Yes, use the resource compiler to embed the icon into your application directly. Assuming your are using MinGW/GCC 4 on Windows (you did not tell anything about your configuration) you have to create a resource file (RC) and embed the icon as *.ico file naming it in a  way it will e the very first resource (e.g. "AAAIcon"). Make sure the icon has proper size, consult resource handling articles accordingly (we don't provide support for teaching how to do that). You can have a look how Code::Blocks does that assuming your are using wxWidgets.