InterviewSolution
Saved Bookmarks
| 1. |
Why Does My Windows Application Pop Up A Console Window Every Time I Run It? |
|
Answer» Make sure that the target type set in the PROJECT PROPERTIES setting is set to Windows Application, and not CONSOLE Application. If you're using the command line, compile with /target:winexe & not target:exe. Make sure that the target type set in the project properties setting is set to Windows Application, and not Console Application. If you're using the command line, compile with /target:winexe & not target:exe. |
|