Joe Strazzere - All Things Quality

Visit my new blog at http://strazzere.blogspot.com/


December 1, 2005 - WinTask - OutputDebugString

Posted in WinTask

'
' OutputDebugString - Send a string to the system debugger (if any)
'

' This is particularly useful when used in conjunction with
' the DebugView tool from SysInternals:
' http://www.sysinternals.com/Utilities/DebugView.html

'
' If you do use a remote debugger (like DebugView), don't check if the debugger is present.

'
ret=External("kernel32","IsDebuggerPresent")

If ret<> 0 then
 External("kernel32","OutputDebugStringA","Hello debugger!")
Else
 MsgBox("No debugger found!")
EndIf

 


<- Last Page :: Next Page ->

About Me

A gathering place for information and ideas about Quality Assurance, Testing, and other useful topics.

Problems cannot be solved by the same level of thinking that created them. - A. Einstein

Search This Site

Translate This Site

RSS Feed

Subscribe

Twitter

@jstrazzere

Categories

Life
QA
Sports
Tools
WinTask
Work in General

What I'm Reading Now