From: Geoff Chambers on
When compiling your application, how do you force the executable to
display your icon. It appears it's grapping the first icon it finds,
which happens to be an icon from a third party library.
From: Willie Moore on
Geoff,

Usually I put my application icon with a name such as "__AppIcon" to force
it to be the first icon that the app sees.

Regards,
Willie

"Geoff Chambers" <gchambers02(a)msn.com> wrote in message
news:e3639960-2bd1-4391-8b0b-659fac89f86b(a)g23g2000vbr.googlegroups.com...
> When compiling your application, how do you force the executable to
> display your icon. It appears it's grapping the first icon it finds,
> which happens to be an icon from a third party library.
>
> __________ Information from ESET NOD32 Antivirus, version of virus
> signature database 4507 (20091014) __________
>
> The message was checked by ESET NOD32 Antivirus.
>
> http://www.eset.com
>
>
>

__________ Information from ESET NOD32 Antivirus, version of virus signature database 4507 (20091014) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com



From: John Martens on
Geoff,

I think this one in the EXE app will do the trick:
RESOURCE IDI_STANDARDICON icon C:\MyIcon.ico

John


Geoff Chambers schreef:
> When compiling your application, how do you force the executable to
> display your icon. It appears it's grapping the first icon it finds,
> which happens to be an icon from a third party library.
From: Karl Faller on
On Wed, 14 Oct 2009 08:34:58 -0700 (PDT), Geoff Chambers
<gchambers02(a)msn.com> wrote:

>When compiling your application, how do you force the executable to
>display your icon. It appears it's grapping the first icon it finds,
>which happens to be an icon from a third party library.
name yours ____AAAAA.ico or similiar, it takes the "lowest"
alphanumeric one

Karl
From: Geoff Schaller on
<g> ...haven't we all grappled with this one.

It is all in the naming. The lowest alphabetically named resource is
picked so your icon's name has to be alphabetically junior to all others
in your application.

Geoff



"Geoff Chambers" <gchambers02(a)msn.com> wrote in message
news:e3639960-2bd1-4391-8b0b-659fac89f86b(a)g23g2000vbr.googlegroups.com:

> When compiling your application, how do you force the executable to
> display your icon. It appears it's grapping the first icon it finds,
> which happens to be an icon from a third party library.