VS2012 2013 显示查找功能 无法具体定位 解决方法

问题的现象:通过使用 Ctrl + Shift + F 也就是Find In Files功能,使用之后只能显示统计结果,不显示具体行.如下图
 
 
regedit 中在注册表中查找:HKEY_CLASSES_ROOTWow6432NodeCLSID{73B7DC00-F498-4ABD-AB79-D07AFD52F395}InProcServer32
发现了默认的值被设置成了NULL。(我是x64系统)
问题就在这里,只需要填入C:Program Files (x86)Common Filesmicrosoft sharedMSEnvTextMgrP.dll,就可以解决问题了。(默认安装为C盘的)
修复后立马恢复定位:如图
 
也可以用导入reg文件(x64),可以用以下复制文件中,别存为FixFindBug.reg 双击
[plain] view plain copy
  1. Windows Registry Editor Version 5.00  
  2.   
  3. [HKEY_CLASSES_ROOTWow6432NodeCLSID{73B7DC00-F498-4ABD-AB79-D07AFD52F395}InProcServer32]  
  4. @="C:\Program Files (x86)\Common Files\microsoft shared\MSEnv\TextMgrP.dll"  
  5. "ThreadingModel"="Both"  

如果是32位系统

[HKEY_CLASSES_ROOTCLSID{73B7DC00-F498-4ABD-AB79-D07AFD52F395}InProcServer32],

如果是64位系统

[HKEY_CLASSES_ROOTWow6432NodeCLSID{73B7DC00-F498-4ABD-AB79-D07AFD52F395}InProcServer32]

TextMgrP.dll路径

C:Program FilesCommon FilesMicrosoft SharedMSEnvTextMgrP.dll 

来源于:http://blog.csdn.net/cml2030/article/details/46805701

原文地址:https://www.cnblogs.com/BensonHai/p/6010175.html