I'm writing a console program.

The program doesn't print anything.

So, it doesn't need to a console window.

I tried to call FreeConsole() function at program starting point.

When I execute the program from windows explorer, a console window appears and then disappears.

But I wish the console window never appears.

How can I do that?

Thanks in advance.

link|improve this question

What are you using to develop this "console" application (VB, C++, .Net)? – Jeff Feb 24 '10 at 0:53
It's C++ Native Application. – Benjamin Feb 24 '10 at 1:23
I suggest changing the question to "Make console program not display console window" – tucuxi Oct 15 '11 at 14:34
feedback

2 Answers

up vote 4 down vote accepted

If you are using Visual Studio .Net then create a normal console application and change the output type to Windows application.

link|improve this answer
feedback

Use WinMain instead of main as your program's entry point: WinMain at MSDN

link|improve this answer
1  
You actually need to switch the project type to console as well - Whether or not a console is required is determined by a bit in the executable header, not the name of the entry point. – Michael Feb 24 '10 at 0:58
True. You'll probably get a link error if the subsystem isn't set to 'windows' (I think that's how it's called) instead of 'console', but I'm using VC as a guide here. – MeDiCS Feb 24 '10 at 1:03
I thought a window application project as like you said. But it was a plan B. Console project never can this? I just want to know well. If it is impossible, I'll change my project type. Thank you! – Benjamin Feb 24 '10 at 1:27
feedback

Your Answer

 
or
required, but never shown

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