How add multiple icons
-
I have two icons. One is for the program and the other will be used for the registry file association for the documents used by the app. How do you have more than on icon image for an executable? Thanks, Mark
As far as I know an icon cannot be specified from a managed dll/exe
-
As far as I know an icon cannot be specified from a managed dll/exe
Giorgi Dalakishvili wrote:
As far as I know an icon cannot be specified from a managed dll/exe
I'm not sure what you mean. Executables (.exe,.dll) can have many icons (e.g., shell32.dll). In an registry association you pick one using the icon's position. For example: C:\Windows\System32\shell32.dll,2 I simply want to know how to embed two icons into my application .exe. Mark
-
Giorgi Dalakishvili wrote:
As far as I know an icon cannot be specified from a managed dll/exe
I'm not sure what you mean. Executables (.exe,.dll) can have many icons (e.g., shell32.dll). In an registry association you pick one using the icon's position. For example: C:\Windows\System32\shell32.dll,2 I simply want to know how to embed two icons into my application .exe. Mark
Mark F. wrote:
Executables (.exe,.dll) can have many icons (e.g., shell32.dll). In an registry association you pick one using the icon's position. For example: C:\Windows\System32\shell32.dll,2
I know that but if I'm not mistaken you can't choose an if the dll or executable was compiled from a .NET language then you can't choose icon from it
-
Giorgi Dalakishvili wrote:
As far as I know an icon cannot be specified from a managed dll/exe
I'm not sure what you mean. Executables (.exe,.dll) can have many icons (e.g., shell32.dll). In an registry association you pick one using the icon's position. For example: C:\Windows\System32\shell32.dll,2 I simply want to know how to embed two icons into my application .exe. Mark
Add them as embedded resources
only two letters away from being an asset
-
I have two icons. One is for the program and the other will be used for the registry file association for the documents used by the app. How do you have more than on icon image for an executable? Thanks, Mark