How would I set the program's icon (not the window's) in Code::Blocks? The one that the user would click on to execute the program.
You have to include it in your resource (.rc) file.
The first icon in the resource section (sorted by name I think) will be your .exe icon.
Just have a look at the resource file of the wizard generated wxWidgets sample.
Regards
raph
this line in .rc file should work:
Icon ICON icon.ico
where third param is your icon file
OK, it worked, thanks. :)