How do I debug a DLL from VS2008?
Posted
by GregH
on Stack Overflow
See other posts from Stack Overflow
or by GregH
Published on 2010-03-31T17:39:14Z
Indexed on
2010/03/31
17:43 UTC
Read the original article
Hit count: 531
I have a program written in VB.Net (Visual Studio 2008) that uses a DLL written in Visual C++ by another developer. I'd like to be able to step in to the C++ code as my code makes calls to methods in the DLL. Since the DLL is it's own solution, I don't think it can be included in my solution/project. I tried putting the DLLs pdb file in the debug/bin directory with the rest of my build and pdb files. However, when I get to the point in stepping through my code, and it gets to the dll call, it just steps right over the dll code. Do I have to manually load symbols? Not sure what I'm doing wrong. Thanks.
© Stack Overflow or respective owner