Questions tagged [output-window]
37 questions
2
votes
2 answers
Visual Studio Output Window Error - C++
Using Visual Studio 2008, I keep seeing this error in the output window:
_CrtDbgReport: String too long or IO Error
I have a lot of TRACE macros scattered throughout my code used to dump information about error conditions: file path, line number,…

Jim Fell
- 13,750
- 36
- 127
- 202
2
votes
1 answer
Filter Debug statements in the Output Window
I'm finding my Output Window's content quite unpleasant to use, as the window is about 90% full of debug lines from IIS Express and from Application Insights. Ideally I would like to filter the Debug sources that write to that window, but maybe I…

ProfK
- 49,207
- 121
- 399
- 775
2
votes
2 answers
Pressing Ctrl + S automatically opens Output window
Whenever i press Ctrl+S from keyboard or whenever i click on any file in Solution Explorer it automatically opens output window only in Visual Studio 2012.
I tried
Tools > Options > Projects and Solutions > Show output window when build starts
I…

Mayank Pathak
- 3,621
- 5
- 39
- 67
1
vote
1 answer
How to display unicode Arabic string in VS output window?
I have a uni-code string in Arabic to display in output window rather than in console, so I could only use OutputDebugStringW, and I call SetConsoleOutputCP(1256) to set Arabic code page but still it only output "????". What should I do...

Wesley Chang
- 1,433
- 2
- 9
- 10
1
vote
0 answers
Visual Studio 17.4.4 debug output: double-clicking solution-relative path
There are many questions that seem to be related, but they are all old, while I am almost sure this started happening with the latest update to visual studio version 17.4.4.
The problem:
In an as-concise-as-possible summary:
Double-clicking a line…

Mike Nakis
- 56,297
- 11
- 110
- 142
1
vote
1 answer
visual studio 2008 output window stopped working
i've been working on a C++ project for some time now in VS 2008. Until recently, upon terminating my application the output window would show if i had any memory leaks. however, a few days ago i noticed it stopped showing this valuable…

mike
- 536
- 1
- 6
- 16
1
vote
1 answer
Visual Studio Build output list of failed projects
I was debugging a big .sln in Visual Studio 2022.
In the output window it shows the message:
========== Build: 16 succeeded, 6 failed, 13 up-to-date, 1 skipped ==========
I was wondering if it is possible to get a short summarized list, which…

Pascal
- 13
- 3
1
vote
1 answer
Apache Netbeans Output Window showing more than result
Is it possible to customize the output window on Apache Netbeans to make it show the result only?
Like e.g.
run-single:
Hello World
I mean what are these informations and why?

sharpnado
- 79
- 1
- 1
- 15
1
vote
4 answers
Want to convert c# multiple Linq into one Linq query?
I wrote the code with multiple if conditions and get list of Ids from each if statement. I want to write that whole code into one linq query if possible then let me know.
The issue is when we are running this code then can see our compiler runs…
1
vote
1 answer
How do you set the default source for the Output window in Visual Studio?
We added a SharePoint BDC model project to a solution in Visual Studio 2010. Ever since, whenever the solution is built, instead of showing the Build output in the Output window, it insists on having "SharePoint Tools" selected in the "Show Output…

Grank
- 5,242
- 7
- 33
- 36
1
vote
0 answers
Build Order in Output Window Missing with Lightweight Solution Load
I've toggled back and forth between normal solution load and lightweight solution load. In the latter, when I go to the output window, the Show output from dropdown does not have the Build Order view.
Is this a bug, by design (because something…

Kit
- 20,354
- 4
- 60
- 103
1
vote
0 answers
how to add code folding to output in visual studio output window
It is possible to use code folding inside the source in visual studio, however it would also be very useful if folding could be added to output made to the visual studio output window
If you want to write to output window from within a unittest case…

serup
- 3,676
- 2
- 30
- 34
1
vote
3 answers
How to enable output Window in VS2013?
I am using VS2013 very first time and some how I can't find Output Window where I can see messages being printed by using Debug.WriteLine or Console.WriteLine
How do I enable this? All I see Window of CallStack

Volatil3
- 14,253
- 38
- 134
- 263
1
vote
1 answer
How to eliminate 'MyApp.vshost.exe: Loaded some.dll' messages in vstudio output window
Is it possible to eliminate messages similar to the one in the title? I get too many 'Loaded ... .dll' lines in the Visual Studio Output window and I'd like to see only those relevant to me (exceptions, traces).
My project is a WPF application and…

Papuashu
- 69
- 5
1
vote
2 answers
Is there a TextWriter interface to the System.Diagnostics.Debug class, for use with Console.SetOut?
Is there anything built-in that can redirect Console.WriteLine calls to System.Diagnostic.Debug-calls?
I was hoping for something like this:
public static void CallNastyConsoleWriteLineUsingFunction() {
…

johv
- 4,424
- 3
- 26
- 42