vote up 1 vote down star
1

Hello everyone.

I'm using Visual Studio 2008 and I can set the application icon using the My Project -> Application - Tab with a path. But, is there any way to set the application icon to an embedded resource instead of the file itself? 'cause it seems like that VS is embedding the icon again just for this purpose, instead of reusing an already embedded resource.

Best Regards, Bobby

flag
1  
Check this thread: stackoverflow.com/questions/198848/… – Groo Oct 7 at 10:25
Thanks for the comment. :) – Bobby Oct 7 at 10:50

1 Answer

vote up 3 vote down check

The application icon needs to be a native (Win32) resource in the .exe (or .dll) file. This is extracted by the shell using the native resource APIs.

But the resources that VS embeds in an assembly are managed (.NET) resources.

(I.e. there are multiple ways of embedding a resource in a .exe or .dll and you need to use the right way.)

VS will show you the native resources if you open the assembly file directly. .NET Reflector will show you the managed resources.

link|flag
I thought something like this...thanks for the answer. :) – Bobby Oct 7 at 10:49
+1 for learn something new (that I feel I should have already known) every day. – Greg D Dec 3 at 15:39

Your Answer

Get an OpenID
or

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