Click here to Skip to main content
15,884,473 members
Articles / Programming Languages / C++
Article

DebugHelp Devstudio Add In

Rate me:
Please Sign up or sign in to vote.
3.43/5 (7 votes)
31 Jan 2001 84.7K   559   14   12
Debug Help is a Visual C++ 6.0 AddIn that helps developers insert debug statements in their program code.
  • Download source files - 40 Kb
  • Introduction

    The Visual C++ IDE helps up perform common, repetitive tasks with Macros and Add-Ins. Through AddIns we can programmatically manipulate Visual C++ environment and it's components. Thus Add-Ins are basically DLL Components that use Automation (formerly OLE Automation) to communicate with the VC++ environment.

    Debug Help is a Visual C++ 6.0 AddIn that helps developers insert debug statements in their program code. It was developed to automate frequent insertion of debug statements (TRACE and OutputDebugString) and thus reduce typing time and related RSI. The real inspiration for such a tool were my fellow developers ('Debugging is ****, man') at NIIT during our coding sessions. This is good karma. :-)

    Full source code is provided along with the AddIn. You can modify this to insert other blocks of code that you find useful.

    Installation

    To install DebugHelp-

    • Copy DbgHelp.dll to your Microsoft Visual Studio\Common\MSDev98\Addins directory (Visual Studio 6.0).
    • Open Visual Studio.
    • Goto Tools->Customize->AddIns and Macro Files.
    • Click to check on DebugHelp AddIn.
    • Click Close

    How to use

    Using DebugHelp is really simple. First position the cursor where you'd like to insert the debug statement and click on the AddIn toolbar button to bring up the Options dialog box. Now type the text you want to output in the edit box, choose the format (TRACE or OutputDebugString) and click on Insert Code to insert the respective debug statement with your text. Use TRACE with MFC applications and OutputDebugString for Win32.

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here


    Written By
    Web Developer
    India India
    Amit Dey is a freelance programmer from Bangalore,India. Chiefly programming VC++/MFC, ATL/COM and PocketPC and Palm platforms. Apart from programming and CP, he is a self-taught guitar and keyboard player.

    He can be contacted at visualcdev@hotmail.com


    Comments and Discussions

     
    GeneralBad Name Pin
    Brad Bruce9-May-02 3:05
    Brad Bruce9-May-02 3:05 
    GeneralThe real reason Pin
    Amit Dey8-Feb-01 6:15
    Amit Dey8-Feb-01 6:15 
    GeneralThe real reason Pin
    Amit Dey8-Feb-01 6:13
    Amit Dey8-Feb-01 6:13 
    GeneralRe: The real reason Pin
    J Patel8-Feb-01 11:01
    J Patel8-Feb-01 11:01 
    GeneralRe: The real reason Pin
    Jonathan Gilligan8-Feb-01 13:25
    Jonathan Gilligan8-Feb-01 13:25 
    GeneralRe: The real reason Pin
    Amit Dey8-Feb-01 23:46
    Amit Dey8-Feb-01 23:46 
    GeneralRe: The real reason Pin
    Ammar19-Mar-01 1:23
    Ammar19-Mar-01 1:23 
    GeneralWindows has a DbgHelp.dll Pin
    4-Feb-01 14:45
    suss4-Feb-01 14:45 
    I suggest you rename your project name (and output) to avoid confusion as windows has a debugging library dbghelp.dll (it replaces the old imagehlp.dll)
    GeneralRe: Windows has a DbgHelp.dll Pin
    Amit Dey5-Feb-01 22:47
    Amit Dey5-Feb-01 22:47 
    QuestionWhy? Pin
    Jonathan Gilligan2-Feb-01 5:52
    Jonathan Gilligan2-Feb-01 5:52 
    AnswerRe: Why? Pin
    3-Feb-01 11:18
    suss3-Feb-01 11:18 
    AnswerRe: Why? Pin
    Amit Dey5-Feb-01 22:51
    Amit Dey5-Feb-01 22:51 

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.