I'm debugging a ClearWin Win32 application inside Visual Studio Express. Is there a way to log to the Output Window in Visual Studio?
Logging to VS Output Window
What is it that you want to log? You should get build messages in the Output window by default.
Quoted from PaulLaidler What is it that you want to log? You should get build messages in the Output window by default.
Sorry for being unclear. I want to write debug messages from my running code (like variable values, or checkpoint messages when the program hits certain spots in the code). Sometimes it's faster than using breakpoints and the Watch window.
Right now I only get the DLLs that are loaded, and the error messages.
You could use a standard PRINT etc. or FTN95 ERRCOUA@ etc. (see FTN95.chm for details) but the results will be sent to the DOS box.
You can send debugging output directly to the Output window when using VS and Microsoft C++ but I don't know of a way to do that using FTN95.