Visual Studio 2005 VB debugging with c++ dll - Mixed Language debugging - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T10:01:07Z http://stackoverflow.com/feeds/question/479495 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/479495/visual-studio-2005-vb-debugging-with-c-dll-mixed-language-debugging 1 Visual Studio 2005 VB debugging with c++ dll - Mixed Language debugging WaveyDavey 2009-01-26T11:40:23Z 2009-01-26T15:19:36Z <p>I have a vb project which calls functions in a dll. The dll is created in a separate vs project (portaudio), which is written in c.</p> <p>The dll c project compiles clean and builds the required dll, which I am currently dropping in c:\windows\system to vb runtime can see it.</p> <p>VB Project lives in c:\devprojects\vbtest</p> <p>C Project lives in c:\devprojects\portaudio with the project file in c:\devprojects\portaudio\build\msvc. Dll created in Win32\debug under this msvc directory.</p> <p>When I call the dll function, is it possible for the vs debugger to step through the c function in the dll - I have all the code etc, but I don't know if VS2005 supports this kind of mixed language debugging.</p> <p>If this is possible, could you advise how I should set up my Visual Studio to achieve this.</p> <p>Many thanks David</p> http://stackoverflow.com/questions/479495/visual-studio-2005-vb-debugging-with-c-dll-mixed-language-debugging/479547#479547 0 Answer by abatishchev for Visual Studio 2005 VB debugging with c++ dll - Mixed Language debugging abatishchev 2009-01-26T11:55:27Z 2009-01-26T11:55:27Z <p>Create a solution with both projects, add the reference in VB project to C project using 'Add Reference..' dialog -> Project and build them all in debug mode.</p> <p>How do you calls C dll from VB?</p> http://stackoverflow.com/questions/479495/visual-studio-2005-vb-debugging-with-c-dll-mixed-language-debugging/480040#480040 0 Answer by jheriko for Visual Studio 2005 VB debugging with c++ dll - Mixed Language debugging jheriko 2009-01-26T14:56:56Z 2009-01-26T14:56:56Z <p>If its VB.NET then this is very easy, just set up a solution with both projects under it, set up their dependencies and ensure that on build the debug version of the VB project links to the debug lib/dll produced from your C++ project. Visual Studio does the rest.</p> <p>I've done this before a couple of times with C# applications calling a C++ dll. I didn't intend to set this up, but tried stepping through whilst debugging assuming I would get the assembly listing and could at least work out somethig of what was going wrong with my code... however it loaded the correct .cpp file and allowed me to continue stepping through that code.</p> http://stackoverflow.com/questions/479495/visual-studio-2005-vb-debugging-with-c-dll-mixed-language-debugging/480126#480126 4 Answer by Ismael for Visual Studio 2005 VB debugging with c++ dll - Mixed Language debugging Ismael 2009-01-26T15:19:36Z 2009-01-26T15:19:36Z <p>It is not necessary to have both projects in the same solution, but you should compile both projects with debug symbols enabled.</p> <p>Now in your VB net solution Project/Properties, in the Debug tab make sure that "Enable unmanaged code debugging" is checked.</p> <p>Also make sure that the dll loaded is in the same place where it was compiled, else it may not found the pdb where the debug symbols are stored.</p>