CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2006
    Posts
    75

    Can i create a graphical extension for Visual Studio 6.0 debugger?

    Hello everyone,

    I'm digging an old project and i can't switch to a newer visual studio.

    I want to plot float data array during debug.

    I know some IDE's have such option. There is a separate window in which we can plot data.

    Can I write such plugin for Visual Studio 6.0 using visual studio SDK?

    Does it support 6.0 version?

    PS: any links to examples or description how to do that would be great.

    Thanks in advance.

  2. #2
    Join Date
    Jun 2010
    Location
    Germany
    Posts
    2,675

    Re: Can i create a graphical extension for Visual Studio 6.0 debugger?

    I don't know of any debugger with that feature, though of course that doesn't necessarily mean there is none. At least I'm pretty sure the VC++6 debuger doesn't support that, probably not even with the help of a plugin.

    If that were my project, I'd rather write that as a debugging extension to my app, so I wouldn't need to worry about any debugger plugin interfaces. I'd either wrap that feature into preprocessor conditionals so the release version doesn't have the feature at all, or make it an undocumented feature, sort of an "easter egg", or only enabling it with an undocumented registry entry or the like.

    HTH
    I was thrown out of college for cheating on the metaphysics exam; I looked into the soul of the boy sitting next to me.

    This is a snakeskin jacket! And for me it's a symbol of my individuality, and my belief... in personal freedom.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured