Developing Internet Explorer, browser helper object extensions?

你说的曾经没有我的故事 提交于 2019-12-03 07:33:43

i'm trying to do the same - and i've just noticed that in build log there was an error

Failure adding assembly to the cache: Attempt to install an assembly without a strong name

so i've added *.snk and highlighting worked (using ie11 to, x64), but 'highlight options' menu item isn't working

IEExtension example

although your IE11 runs in a 64bit Windows, but the default IE instance is 32bit version. The enhanced protection mode need to be enabled so that IE11 will run in 64bit mode.

Another trick is for 32bit IE, you have to register 32bit extension, and vice versa for 64bit. My suggestion is as follows:

  • make sure your IE11 mode is 32bit or 64bit
  • register only 32bit or 64bit extension, if both registered, the extension can NOT work either. You have to double check your registry to delete the one un-necessary

I warmly suggest you this post of Pavel Zolnikov published in 2002!

http://www.codeproject.com/Articles/2219/Extending-Explorer-with-Band-Objects-using-NET-and

It is based on the use of Band objects and is compiled using .Net 2.0. As you will read on the post comments, it works perfectly well for IE 11 and on Windows 7 and Windows 10. Tutorial source code is provided and opens and compiles well with Visual Studio 2013. Enjoy!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!