T
TC
I'm trying to debug a console application, but I can't see the console
output. I've seen many references which say that console output is
supposed to appear on the Output window when the application is run in
Debug mode. However, I just can't get that to work.
I'm using Visual Studio 2005. I've confirmed that my application is
compiled as a console application, and that I'm running in Debug mode.
To investigate this issue, I've reduced the entire application to 5
lines:
Module Module1
Sub Main()
Console.Write("Test")
End Sub
End Module
Why don't I see "Test" on the Output window, and what must I do to see
it somewhere?
-TC
output. I've seen many references which say that console output is
supposed to appear on the Output window when the application is run in
Debug mode. However, I just can't get that to work.
I'm using Visual Studio 2005. I've confirmed that my application is
compiled as a console application, and that I'm running in Debug mode.
To investigate this issue, I've reduced the entire application to 5
lines:
Module Module1
Sub Main()
Console.Write("Test")
End Sub
End Module
Why don't I see "Test" on the Output window, and what must I do to see
it somewhere?
-TC