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 is called from?
I'm using Delphi 2009.
|
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 is called from? I'm using Delphi 2009.
| |||
|
feedback
|
|
How many calls to Otherwise, you could - of course - use a search and replace and replace all You could also write a function
in a unit used by every other unit in the project. If only this new unit is declared after UpdateYes, you can place breakpoints inside Windows.pas. First, in your project, go to Project Options, and under Debugging, select "Use debug DCUs". Then you can go to Windows.pas and place a breakpoint at line 30769:
| |||||||||
feedback
|
|
Point of information: Your application wouldn't be the only one that shipped with some live OutputDebugStrings still intact! To see this, run Microsoft's System Internal's DebugView program for a while during your normal day-to-day Windows work. This program displays all OutputDebug messages. You'll see debug messages pop up now and then. For example, I just tried it on Windows 7 and got this message from some application:
More than a just a curiosity, the collection of programs from System Internals is something that every programmer should have in their tool box. Link to DebugView: http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx | |||
|
feedback
|
Done. Now any call to OutputDebugString from your application will break at breakpoint. You can also turn on logging in breakpoint properties to log call stack. | |||
|
feedback
|