The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
18 views

Pass data from ะก++ program to VSPackage plugin

I'm writing a program in Visual Studio 2005. (C++ non managed). I want to write a function that sends data to VSPackage plugin. The good example of it is a "OutputDebugString" function. This function ...
0
votes
1answer
55 views

C++ OutputDebugStringW with newline

I want to attach a new line to the OutputDebugStringW. OutputDebugStringW(Item.pItem); pItem is a LPCWSTR, not a wstring, so I could not directly add new line by saying + "/n". Can somebody help?
1
vote
0answers
164 views

OutputDebugString() with Delphi for MacOS

Is there an NSLog declaration in the Delphi OSX units. I failed to find a substitude for OutputDebugString in a Firemonkey application.
0
votes
1answer
218 views

How to view output of OutputDebugString () across the network?

Further to my previous question, I find that I cannot use the GExpertsDebugWindow on a PC which did not previously have Delphi installed. If I have the following (not unusal, so probably of interest ...
0
votes
1answer
378 views

Windows 2008 r2 debugview (OutputDebugString) issue

Hi we are installing x86 application as a service on windows 2008 R2 which is using OutputDebugString for debug messages. The problem is that DebugView utility catches the debug output from the ...
1
vote
2answers
370 views

Delphi - hook\bypass\catch all the OutputDebugString from the system into my application with process id and name

based on this question I've created a small application which is catching all debug strings into my application. code of the thread is showed bellow. What I want is to get the process id and it's name ...
3
votes
4answers
2k views

How to view output of OutputDebugString?

I want to use OutputDebugString() in my application and then have the option to show it in a separate viewer when the app is deployed in the field. That is to say, I don't want to have to to change a ...
0
votes
0answers
267 views

Using OutputDebugString in the code is making the compilation fail when built in release mode.(VC++)

I have used OutputDebugString @ many placed in my VC++ code. Its building fine in debug mode. But using the same code with OutputDebugString is making the compilation to fail. How to avoid this build ...
6
votes
4answers
257 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 ...
0
votes
2answers
1k 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
309 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 ...
2
votes
1answer
968 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!
0
votes
1answer
1k 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?
1
vote
1answer
387 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 ...
8
votes
1answer
1k 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 ...
0
votes
1answer
1k 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 ...
4
votes
3answers
1k 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
5answers
790 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 ...
4
votes
3answers
6k 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 ...
0
votes
2answers
446 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 ...
1
vote
4answers
1k 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
304 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 ...
13
votes
3answers
2k 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. ...