vote up 1 vote down star

Hi,

Background: We develop win32 applications, and use the "Thompson Toolkit" on windows to give us a unix-like shell that we use as our command-line.

We have a GUI program (with a WinMain and message loop) that we want to write to the console, but printf and so on don't work, even when we launch the program from the console. How can we write to the console from a GUI program? We need to print text there so that an automated build system can display error messages and so on.

Thanks.

flag

79% accept rate

4 Answers

vote up 2 vote down

In short, you need to attach a console. For details and ready to use code, see http://www.codeproject.com/KB/dialog/ConsoleAdapter.aspx.

link|flag
vote up 2 vote down

This appears to be a duplicate of another recent question:

http://stackoverflow.com/questions/191842/how-do-i-get-console-output-in-c-with-a-windows-program

link|flag
vote up 0 vote down

somewhere in the Visual Studio Project Settings you can switch on having a console, assuming you are using VS. (Can't say where because I currently don't have it)

link|flag
vote up 0 vote down

Instead of logging to the console, log to a file and then track the file with a separate gui application. This keeps the console uncluttered and gives you a more persistent record of your log, which occasionally is extremely useful. There are various libraries which will do most of this for you, or you can keep it simple and just do it yourself.

link|flag
You can't pipe output to other programs that way. Plus if a user wanted to log to a file, he'd pipe it to a file. Logging to a file is not flexible. – Roel Oct 10 '08 at 17:43

Your Answer

Get an OpenID
or

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