Tagged Questions
The debugview tag has no wiki summary.
10
votes
3answers
2k views
How to make DebugView work under .NET 4?
SysInternals' DebugView no longer works if used under .NET 4. Some research indicated that the new architecture of the framework did not allow for traces to be captured if a debugger was attached; in ...
5
votes
2answers
3k views
Why does DebugView not show debugging messages when Visual Studio does
I am developing a Browser Helper Object running inside Internet Explorer. I am writing debugging messages with ATLTRACE("..."); These appear fine when Visual Studio is attached to the iexplore.exe ...
4
votes
4answers
459 views
Alternatives to DebugView?
I'm using SysInternals DebugView for debugging/logging during testing, and it's pretty good. However I was thinking is there more advanced tool.
Features I'm looking for:
Live filters - log ...
2
votes
1answer
183 views
DebugView alternative for Linux (mono related)
Under Windows we use DebugView to monitor trace and debug outputs of our .NET application. Since we are currently porting the application to mono on Linux I wonder if there's a similar tool.
We're ...
2
votes
3answers
355 views
Can I disable “debug view” in Visual Studio 2010?
Visual Studio 2010 switches to "debug view" when i click 'start debugging' - much like Eclipse does.
Can i disable this feature - if so how?
My machine doesn't perform very well - therefore the ...
1
vote
1answer
52 views
Trace.WriteLine not producing any output
I'm having an odd problem With Trace.WriteLine not producing any output. I've traced the code and Trace.Writeline is definitely getting called, but no output is appearing in the Output window or in ...
1
vote
1answer
59 views
Deploy debug visualizer as a VSIX extension
is it possible to deploy my debug visualizer with the new extension system in visual studio 2010? I want to publish it on the online gallery and allow to manage it via the extension manager.
The ...
1
vote
3answers
208 views
How can I redirect the output of command prompt to DebugView on windows?
My idea is something like
C:\myprog.exe > DebugView
but instead of creating a file named "DebugView", I would like the output of myprog.exe to be captured by DebugView.
Any comment is highly ...
1
vote
4answers
824 views
OutputDebugString + DebugView = not tabs!
I am dumping \t delimited data using using OutputDebugString and then use ex-Sysinternals DebugView to capture it.
The problem is that all the data in DebugView appear to be space delimited, hence I ...
0
votes
1answer
16 views
DebugView DeviceId Error
When I run DbgView.exe I am getting the following output. I tried "Run as Administrator" but no change.
How can I solve this.
0
votes
2answers
54 views
How do I get SysInternals DebugView to display indents?
I'm using SysInternals DebugView with my .Net application. I've tried using the Indent feature of the .Net Debug class, but DebugView just seems to represent this as a NewLine character.
Does ...
0
votes
0answers
107 views
DebugView Error
I'm working with Windows 7 64X and DebugView 4.76.0.0.
Logs isn't shown on DebugView.
I trying to write logs with Debug.WriteLine("Text"); and see nothing.
I can see that It's connected to my ...
0
votes
1answer
235 views
Capturing trace/debug information from a Silverlight OOB app running on a Mac
I'm having a problem with a trusted Silverlight 4 OOB app when it runs on a Mac.
In order to debug I'd really like to be able to capture the debug/trace information output by the app. (The problem is ...
0
votes
1answer
388 views
Windows Kernel Debugger API?…accessing strings
Does everyone out there knows how can you read windows kernel debugger strings generated by calls to kdPrint or debugPrint functions?
Reading in user mode especially but it is also good in kernel ...