BHO 插件不适用于 64 位操作系统上的 IE7
在 IE7 32 位 XP/Vista 上顺利运行的 BHO 不适用于 64bt XP/Vista 上的 IE7。我怀疑问题出在注册 BHO 程序集上。谁能有一个好的解决方案让 BHO 适用于 64 位平台吗?
谢谢,
达特
The BHO which works smoothly on IE7 32bit XP/Vista does not work for IE7 on 64bt XP/Vista. I suspect the problem is with registering the BHO assembly. Can anyone has a good solution to make the BHO work for 64bit platform?
Thanks,
Datte
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
BHO 是进程内组件,无法将 32 位 dll 加载到 64 位进程。
您需要为 64 位版本的 IE 构建 64 位 DLL。 64 位 Windows 上的 32 位版本 IE 应该可以与您的 32 位 BHO 正常工作。如果您已经在 64 位中构建 BHO,请使用 ProcMon 查看您的 BHO 是否存在兼容性问题。
BHO are in-process components and you can not load 32bit dll to 64bit process.
You need to build a 64bit DLL for the 64 bit version of IE. The 32 bit version of IE on 64 bit Windows should work fine with your 32 bit BHO. If you are already building the BHO in 64bit, use ProcMon to see if your BHO has compatibility problems.