vote up 3 vote down star

Is it possible to change a console window's icon from .net? Without using win32 calls.

flag

2  
Do you mean your application's icon or any externally-started console window? – chakrit Aug 17 at 1:16
application icon – EHaskins Aug 17 at 1:21

3 Answers

vote up 4 vote down check

If it is your own application's console window, then you can...

  1. Double-click on "Properties" under your console project in Solution Explorer
  2. Select the option "Icon and manifest"
  3. Add your icon in that panel.

screenshot

(I'm assuming you are in a C# environment, but VB.NET should be similar)

If you are starting an external process... then you can make a "launcher" console project to which you can set your own icon the same way as above.

If you means an externally owned console window that you don't have control over... then I think you do need win32/pinvoke call.

link|flag
vote up 0 vote down

Generally, you cannot assign an icon to the window of the application when it is running from vshost. It will work correctly when it is running outside the IDE, with the condition that you set a custom icon in the Project Properties dialog.

link|flag
vote up 0 vote down

I had the icon set in the project properties, as Chakrit suggested, but my problem was that I was running it from Visual Studio, which runs app.vshost.exe, not app.exe directly.

Since app.vshost.exe didn't have the icon it was appearing not to work, even though it was configured correctly.

If a moderator see this, please un-delete chakrit's very good post.

link|flag
1  
undeleted... – Marc Gravell Aug 23 at 12:48
Actually, I didn't notice the "vshost" problem too til you mention it. :-) ... I just sort of remember that it worked that way. – chakrit Sep 2 at 5:31

Your Answer

Get an OpenID
or

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