473,748 Members | 5,232 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How Do I Debug the Console Output?

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

Jul 7 '07 #1
3 13859

"TC" <go*********@ya hoo.comwrote in message
news:11******** **************@ e9g2000prf.goog legroups.com...
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
Do you mean the console window? Console output will not be displayed in the
VS 2005 Output Window.
You need to add some code that will keep the console window open after your
write. As it is now, the application ends and the console window closes
before you see the output.
You could add a Console.Read() after the Write to pause your program to wait
for input to keep the console window open so you could see it.

Jul 7 '07 #2

The only time I have seen a Console Application start directing output to
the IDE Output window was when the application was using threading. It was a
PITA as I never did figure out why it would start using the Output window
while I was debugging. I had to reboot the machine to make it go back to the
IDE and the DOS windows where I wanted to debug from.

The link may help

http://www.google.com/search?hl=en&q...ET&btnG=Search
"TC" <go*********@ya hoo.comwrote in message
news:11******** **************@ e9g2000prf.goog legroups.com...
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
Jul 7 '07 #3
TC
On Jul 7, 2:05 pm, "Mr. Arnold" <MR. Arn...@Arnold.c omwrote:
The only time I have seen a Console Application start directing output to
the IDE Output window was when the application was using threading. It was a
PITA as I never did figure out why it would start using the Output window
while I was debugging. I had to reboot the machine to make it go back to the
IDE and the DOS windows where I wanted to debug from.

The link may help

http://www.google.com/search?hl=en&q...pplication+out...

"TC" <golemdan...@ya hoo.comwrote in message

news:11******** **************@ e9g2000prf.goog legroups.com...
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- Hide quoted text -

- Show quoted text -
Thanks for the replies. Apparently, I was misinformed. I was told that
in Debug mode, Visual Studio somehow echoes the console output in a
Visual Studio window. Since that isn't the case, I will rely on other
debugging techniques.

-TC

Jul 7 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
1716
by: Nick Forrington | last post by:
Hi, I'm making a program and have a static Console class that I'm using to output things, these get sent to the console and also to the graphics on screen (I'm using SDL). One thing I'm having a bit of trouble with is passing strings and numbers in the same arguement e.g. Console::println("X=" + x); kind of thing?
4
8740
by: Bill Cohagan | last post by:
I'm writing a console app (in C#) and I want to be able to redirect the standard input/output streams when it's run at a command prompt. IOW I want to support the "<" and ">" redirection syntax. The obvious way to do this is by using the static Console type properties, In and Out. When trying to debug the app in the IDE however, this doesn't appear to work. I've edited the project properties and added the necessary text to the "command...
5
3033
by: chris | last post by:
Hello all - Preface: This isn't a C# Builder question but if you happen to have the answer to my primary problem, please feel free to chime in ;-) I'm using Borland's C# Builder (Personal) and it seems there isn't an Output window (where the Debug.WriteLine() info would go) like VS has. If there is, I can't find it. I would like to know if it is possible to write a class with the ability to call a console window that would display...
3
7206
by: Brett | last post by:
I use the following to output to the console during debugging: catch(Exception ex) { Debug.WriteLine("Error: " + ex.Message); } Many of the times on the console, the above is appended on the same line. Sometimes it goes on a new line. I don't have any thing in my code related to trace listeners. Any suggestions as to why this is occuring?
2
2328
by: Peter Kirk | last post by:
Hi I am "playing" with some simple aspects of C# with Visual Studio. All I would like to know right now is how do I get the Console.Write method to write its output in the Visual Studio debug/output pane? At the moment my application creates a "command" window and writes output there (all by itself) - and said window closes itself when the application terminates. (So I guess somewhere in Visual Studio configuration there is an output...
3
21132
by: Frank Rizzo | last post by:
Is there anyway to transparently redirect the output of the Debug.WriteLine statement from the Debug window to something else such as a console or a file? Thanks
7
18796
by: Thomas Pecha | last post by:
Sorry for all who think this is easy, I was not able to handle this Coming from VB6 where with simple debug.print strAString you could write to debug window, I am totalling failing in vb.net 2003 The sample in the help file does not work. I tried now for days ... Pls could anybody post a sample, including necessary imports and so on -
3
2398
by: Daniel | last post by:
Hi I would like to view certain variables during run time and find the Console.WriteLine which write to the visual studio command window not very useful, either i cant see what is displayed until after my app finishes or i cant see it a all. I therefore want to make a command window (you know the black one that comes up which a console app creates) and just output my debug info onto that. so as my app runs i have a nice side window...
46
24256
by: Ian Boyd | last post by:
IIS5, on a Windows 2000 Server machine. Debeg.WriteLine "Hello, world!" How can i view it?
0
8991
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8831
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9548
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9374
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8244
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6076
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4876
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3315
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2787
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.