I have a vb project that works in DLL. DLL is built in a separate vs. project, which is c. Has been written in
DLL creates a clean and essential DLL project, which I am currently leaving in c: \ windows \ system, can view Vb runtime.
The VB project resides in c: \ devprojects \ vbtest
The project remains in c: \ devprojects \ portaudio with the project file in c: \ devprojects \ portaudio \ creation \ MSVC DSL is created in Win32 \ debug under this MSWC directory.
When I call the dll function, is it possible for the debugger to move into DLL through the CD function - I have all the code etc., but I do not know that VS2005 Supports mixed language debugging.
If this is possible, can you advise how I can install my visual studio to achieve it?
Thank you David
The same solution is not necessary for both projects, But you should compile both projects with the debug icon enabled.
Now in the debug tab in your VB Net Solution project / properties, make sure that "Enable unmanaged code debugging" is checked.
Also make sure that the DLL load is in one place where it was compiled, otherwise it is not found PDB where debug symbols are deposited.
Comments
Post a Comment