how debug the vc++ Dll
How to debug the vc++ Dll in visual studio 08.I also includ开发者_StackOverflow中文版e breckpoint and pass the exe but still not succeed.The error message that
The breakpoint will not currently be hit.No symbols have been loaded for this document.
The breakpoint will not currently be hit.No symbols have been loaded for this document.
You get this message when the .pdb
file was not found or is not compatible with your dll version.
Try doing the following:
1) Check if the .pdb
file exists in the same location as the .dll
or in Visual Studio's pdb file directory.
2) If it exists, try manually loading it - right click on the module and select load symbols from.
3) If you get an error saying the pdb is not compatible with your dll
... well... it means just that. You can either recompile or try to find the compatible version.
精彩评论