Tagged Questions
The outputdebugstring tag has no wiki summary.
9
votes
3answers
1k views
In Delphi, is outputdebugstring thread safe?
Simple question i belive, is
outputdebugstring(pansichar(''));
Thread safe?
I/We have been using it in threads for debugging, and i never occurred to me if i should be doing it a different way.
...
6
votes
4answers
123 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 ...
6
votes
1answer
426 views
How can I receive OutputDebugString from service?
I'm trying to catch all OutputDebugString messages (including those from services) using the following code. It worked fine until I migrated to Windows 7. The problem is that since Windows Vista ...
4
votes
3answers
683 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
1answer
184 views
Error: Undeclared identifier: 'OutputDebugString'
This is a stupid question but I am stuck here. I use OutputDebugString in my Delphi Code, but receive the above error.
Which package is this OutputDebugString in? Thanks!
2
votes
5answers
532 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
1answer
498 views
Issue Capturing Global (Session 0) OutputDebugString messages via Win32 API?
I am currently working on a simple application to capture OutputDebugString messages (similar to Windows Sysinternals DbgView or DBMon.NET). Everything is working as expected when accessing ...
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
0answers
19 views
real-time trace as replacement to dbview
In reference to my previous 2 questions:
real time trace , counters and other useful instruments and outputdebugstring capture
Here is what I've come up with:
...
0
votes
1answer
71 views
OutputDebugString() does not work on Windows 7x64
My program works great with windows xp. I am trying to add some more functionality and using OutputDebugString() to show some debug information. works flawlessly on XP. Now when i want to use the same ...
0
votes
1answer
94 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 ...
0
votes
1answer
276 views
OutputDebugString error
I use:
OutputDebugString(L"My error");
in Visual Studio 2010, but instead of displaying "My error", I get just an "ERROR" in the window.
How do I fix this issue?
0
votes
1answer
73 views
How to filter Visual Studio 2008 output window
I'm looking for a way to filter the messages coming out from OutputDebugString into the Output window in VS 2008. I'm modifying a large system and I'm only interested in my messages in the log.
I ...
0
votes
2answers
312 views
calling std::cout.rdbuf() produces syntax error
Maybe I missed something, but I cant figure out why Visual Studio 2008 isn't seeing the rdbuf() procedure. Here is my code:
16. #include "DebugBuffer/BufferedStringBuf.h"
17.
18. BufferedStringBuf ...