近日发现一个奇怪的问题:
在VC6.0 Debug情况下,用F11无法进入原来可以进入的MFC源码,比如在如下的情况下不能进入::OnNewDocument()函数查看MFC源码:
BOOL CInfoBoardSystemV2Doc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
}
而从CallStack查看,此时仅显示MFC42D.dll 5f49a443() 之类的调用序列。
1.重新安装VC6后问题依然;
2.打补丁(VS sp6 ):安装setupsp6.exe,代码可以跟踪进入MFC了,但是在刚调试时会弹出Find Symbols对话框提醒有两个文件找不到:mfcs42d.pdb; msvcrtd.pdb;
我通过文件搜索,在D:\Program Files\Microsoft Visual Studio\VC98\Lib目录下找到这个这两个文件 ,但是在这个Find Symbols对话框却提醒:A file with ther correct name was found in this directory,but it is not the correct one.点击Cancel后,可以进入上面的CDocument::OnNewDocument()了。但是这两个正确的pdb文件在哪呢?
阅读(3045) | 评论(0) | 转发(0) |