Hi, Carl,
Thanks for the quick response. I am using Managed C++ extensions to wrap
the native C++ dll. I could not find the Enable unmanaged debugging property
in project properties. The property is available if the project is C#.
Is there anything else I could do?
Michael
> > I was wondering if it is possible and how to debug from managedC++
> > dll into unmanaged C++ code. I tried, but without any success.
[quoted text clipped - 9 lines]
>
> -cd
Carl Daniel [VC++ MVP] - 13 Jul 2005 20:40 GMT
> Hi, Carl,
> Thanks for the quick response. I am using Managed C++ extensions to
> wrap the native C++ dll. I could not find the Enable unmanaged
> debugging property in project properties. The property is available
> if the project is C#. Is there anything else I could do?
I'm 99.99% sure it's there somewhere for C++ too - look around for it.
I believe that if you attach to the process instead of starting it under the
debugger than you can simply check both CLR and Native boxes in the window
that appears.
-cd
William DePalo [MVP VC++] - 13 Jul 2005 22:49 GMT
> Thanks for the quick response. I am using Managed C++ extensions to wrap
> the native C++ dll. I could not find the Enable unmanaged debugging
> property
> in project properties. The property is available if the project is C#.
> Is there anything else I could do?
Are you using VS.Net 2003?
If so, from the menu,
for C++ projects,
Project->Properties->Debugging->Debugger Type
for C# projects
Project->Properties->Debugging->Enable Unmanaged Debugging
Regards,
Will