惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
J
Java Code Geeks
雷峰网
雷峰网
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
V
Vulnerabilities – Threatpost
S
Securelist
The Hacker News
The Hacker News
The Register - Security
The Register - Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Help Net Security
Help Net Security
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
M
MIT News - Artificial intelligence
AI
AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Schneier on Security
Schneier on Security
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Google DeepMind News
Google DeepMind News
Hacker News - Newest:
Hacker News - Newest: "LLM"
H
Hacker News: Front Page
博客园 - 司徒正美
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
大猫的无限游戏
大猫的无限游戏
Security Latest
Security Latest
Engineering at Meta
Engineering at Meta
N
News and Events Feed by Topic
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Threat Research - Cisco Blogs
U
Unit 42
V
V2EX
V2EX - 技术
V2EX - 技术
L
LINUX DO - 最新话题
aimingoo的专栏
aimingoo的专栏
Microsoft Security Blog
Microsoft Security Blog
Recorded Future
Recorded Future
P
Privacy & Cybersecurity Law Blog
美团技术团队
小众软件
小众软件
F
Fortinet All Blogs

博客园 - Alen在西安

(转)关于教育些微的几个想法 寻找完美的 URL 验证正则表达式 会让你人生失败的31种原因(图 VS2012 DesignTime 笔记 DTE(vs2012) 编程相关笔记 免费用电信的wifi 简单反编译 chm 文件 如何减少silverlight XAP包的尺寸 读书笔记 - .net2.0 异步编程模型: 使用 IAsyncResult 调用异步方法 测试绑定新浪微博 (转)Debug Silverlight in FireFox [转]CLR 全面透彻解析 - 将 APTCA 程序集迁移到 .NET Framework 4 在VS2010 "Choose Toolbox Item" Dialog 中显示自定义控件 笑话一则 Assembly 的 Shadow-Copy 所在的folder Silverlight 控件开发记录之 "extern alias” 关键字 安装完vS2010Beta2后请重置IDE设置 设置保护眼睛的背景色 又到五一了
【转发】 解决VS2012 Find and Replace (Ctrl+Shift+F) 不能正常工作的问题
Alen在西安 · 2013-04-12 · via 博客园 - Alen在西安

我的VS2012装好之后Find and Replace (Ctrl+Shift+F)功能就一直不能正常工作,具体表现是:

  • Find Next功能可用,但Find      All的结果不显示每一条matched line.
  • Find Next and Replace功能可用,但Replace All不能完成替换,在提示“xxx      occrurrence(s) replaced.”之后并未真正替换内容。

经过网上一番查找,有两种普遍的解决方法:

  • VS"Find in Files"失效的解决方法一:让VS窗口获得焦点,顺利按以下快捷键Ctrl+Break,Ctrl+Scroll Lock,Alt+Break
  • VS"Find in Files"失效的解决方法二:在注册表中删除"HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\Find"后重启VS.

但尝试之后都不能解决我的问题。期间还尝试过重置VS所有设置,禁用所有插件,都不起效。

后来在winking等一众大神的帮助下,发现可能是COM组件注册错误引起的问题,根据http://social.msdn.microsoft.com/Forums/en-US/vsx/thread/40c9ad4a-8cee-4f3f-b420-c7cc0463942a/中的办法解决了我的问题。

解决方案引用如下:

Please check if the following registry key is ok.  Fixing this solved the issue for me.

[HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{73B7DC00-F498-4ABD-AB79-D07AFD52F395}]
@="PSFactoryBuffer"

[HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{73B7DC00-F498-4ABD-AB79-D07AFD52F395}\InProcServer32]
@="C:\\Program Files (x86)\\Common Files\\Microsoft Shared\\MSEnv\\TextMgrP.dll"     (我本机上的此项为空)
"ThreadingModel"="Both"

经过大神们的分析,引起这个问题的一个可能原因是:

我在安装了VS2012之后,在没有打开使用过的情况下直接安装了Update1补丁,而Update1补丁本身存在缺陷,引起COM组件引用错误,最终造成这个问题。

感谢帮助我解决问题的大神们!

追加:

还有一个类似的问题,曾经有同事发现某些时候XAML IntelliSense或者Code Editor IntelliSense不起作用,究其原因,也是TextMgrP.dll中的COM组件注册问题,修复办法就是找到对应的COM组件的注册键,更新TextMgrP.dll的路径。