1. binding an icon to an executable?
- Posted by "Greg Haberek" <g.haberek at comcast.net> Feb 02, 2004
- 511 views
How do i bind an icon to an executable file? I'm using the translator. I'm pretty sure its done at compile time, correct? I looked through the source files, and found nothing. I think this should be provided in the docs for the source. I also think this should be an option in the translator, since it's an option in the binder. Such as: ecw myfile.exw -icon:"myicon.ico" or at least tell my how to do this! ~Greg
2. Re: binding an icon to an executable?
- Posted by Robert Craig <rds at RapidEuphoria.com> Feb 02, 2004
- 499 views
Greg Haberek wrote: How do i bind an icon to an executable file? > I'm using the translator. Wolfgang Fritz has examples of this sort of thing using the Translator and various C compilers. http://www.king.igs.net/~wolfritz/rc-demo.zip Regards, Rob Craig Rapid Deployment Software http://www.RapidEuphoria.com
3. Re: binding an icon to an executable?
- Posted by "Wolf" <wolfritz at king.igs.net> Feb 03, 2004
- 500 views
> How do i bind an icon to an executable file? I'm using the translator. I'm > pretty sure its done at compile time, correct? I looked ... Basically, you just need an .rc file, which specifies: IDAPPLICON ICON your_icon.ico ... and a way to link the (created) resource to your .exe. If I've got the spelling right, here's some examples: http://www.king.igs.net/~wolfritz/rc-demo.zip (56K)