Debugging Visual C++ 6.0 from VS2005

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • wildThought

    Debugging Visual C++ 6.0 from VS2005

    I have created an ASP.Web Service on my machine. This has a COM Object

    registered to it that was written in Visual C++ in Visual Studio 6. I
    want to have the debugger step into the Visual C++ code. Is this
    possible?

  • Carl Daniel [VC++ MVP]

    #2
    Re: Debugging Visual C++ 6.0 from VS2005

    wildThought wrote:
    I have created an ASP.Web Service on my machine. This has a COM
    Object
    >
    registered to it that was written in Visual C++ in Visual Studio 6. I
    want to have the debugger step into the Visual C++ code. Is this
    possible?
    Yes. Just attach the debugger to inetinfo.exe and you'll be able to debug
    into the COM object (assuming you get all the paths set up right, have
    matching debug info, and host of other things that could make it not work).

    I'd suggest you post questions like this in either the Windows SDK or VC++
    groups though, instead of the C# group.

    -cd


    Comment

    Working...