2

I have written a BHO by following " How to get started with developing Internet Explorer extensions?. " and it worked very well for me in IE8 and IE9. But the same is not working in IE10 and above. Are there any differences between IE9 and IE10 in terms of BHO code.

Any help is appreciated. Thanks

Community
  • 1
  • 1
kvbrahmam
  • 143
  • 2
  • 14

1 Answers1

2

Yes, though without more information about the problems you're running into with IE10, it's hard to what specific information to point you to.

Here are a couple of links to get you started:

I can tell you that BHOs written in managed code are not formally supported. Here are a few links that discuss the problems:

(Note that the last link is written by Raymond Chen, one of the smartest guys at Microsoft. It's not wise to ignore his advice.)

Please do try to isolate the problem into more details. That makes it much easier to help.

Hope this helps...

-- Lance

Lance Leonard
  • 3,285
  • 3
  • 16
  • 15
  • 32 bit version of BHO is working in IE 10 64 bit machine. But the 64 bit is not working on the same machine – kvbrahmam Oct 24 '14 at 07:40
  • By "not working" you mean...? Are there error messages? Is an object failing to instantiate? Have you tried tracing the code to see if there's an execution failure? Perhaps there's an environmental factor that's interfering...? – Lance Leonard Oct 24 '14 at 15:16
  • No error messages, nothing. It does not load at all. I did not debug this. – kvbrahmam Oct 28 '14 at 04:56