Tagged Questions
6
votes
4answers
121 views
How can I keep a large amount of OutputDebugString() calls from degrading my app in the Delphi 6 IDE?
This has happened to me on more than one occasion and has led to many lost hours chasing a ghost. As typical, when I am debugging some really difficult timing related code I start adding tons of ...
4
votes
3answers
681 views
Debugging OutputDebugString calls in Delphi
I've some "rogue" OutputDebugString call in my application which prints out "T", but I can't just locate it.
Is it possible somehow to set breakpoint on OutputDebugString -function and see where it ...
4
votes
3answers
2k views
Can output from OutputDebugString be viewed in VisualStudio's output window
I am using C# and VS2010.
When I use OutputDebugString to write debug information, should it show up in the output window? I can see the output from OutputDebugString in DebugView, but I thought I ...
2
votes
5answers
531 views
Bypass OutputDebugString in Delphi 7?
I'm wondering if it's possible to bypass the OutputDebugString? I'd like the OutputDebugString output showing up in DebugView and not in the internal Delphi Event Viewer window. But i can't find a way ...
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 ...
1
vote
0answers
241 views
BugTrap and RapiDbg on Windows Mobile 6.0
I'm trying to port a driver and a few applications from a PDA running PocketPC 2003 (Windows CE 4.21) to one running Windows Mobile 6 (CE 5.2).
Does anybody know if/how I can log the ...
0
votes
1answer
93 views
How to add TimeStamp to OutputDebugString()?
I am writing a C++ application, I want to add TimeStamp to OutputDebugString(), I already know that if I watch the application using DebugView, it automatically show TimeStamps. But for a particular ...