Visual C# - Prevent console window from launching
-
Hi All, I have a windows form program, which runs and compiles fine. but along with the form window, there is a console window (black "command prompt" screen) that also launches, none of my other window program have this behavior. where can I stop the black window from launching? I looked at all the code and can't find it, so I'm assuming is some settings that I need to turn off. again, thank you all for all the help you have provided to this newbie. -JC
-
Hi All, I have a windows form program, which runs and compiles fine. but along with the form window, there is a console window (black "command prompt" screen) that also launches, none of my other window program have this behavior. where can I stop the black window from launching? I looked at all the code and can't find it, so I'm assuming is some settings that I need to turn off. again, thank you all for all the help you have provided to this newbie. -JC
Your project thinks it is a console application. Go to the project's properties and check that the "Output type:" setting is set to "Windows Application" and the "Startup object:" is set to your main WinForm's class.
-Spacix All your skynet questions[^] belong to solved
I dislike the black-and-white voting system on questions/answers. X|
-
Your project thinks it is a console application. Go to the project's properties and check that the "Output type:" setting is set to "Windows Application" and the "Startup object:" is set to your main WinForm's class.
-Spacix All your skynet questions[^] belong to solved
I dislike the black-and-white voting system on questions/answers. X|