Tagged Questions

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
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 ...
6
votes
1answer
422 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
682 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 ...
2
votes
1answer
183 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
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 ...