A Browser Helper Object (BHO) is a DLL module designed as a plugin for Microsoft's Internet Explorer web browser (as well as Windows Explorer) to provide added functionality.
Questions tagged [bho]
498 questions
39
votes
4 answers
Add browser action button in internet explorer BHO
So. I'm working on a BHO in IE and I want to add a browser action like this:
In internet explorer it would look something like
The only tutorials and docs I've found were on creating toolbar items. None mentioned this option. I know this is…

Benjamin Gruenbaum
- 270,886
- 87
- 504
- 504
21
votes
2 answers
Cannot get BHO working in 64 bit
I'm working on IE11 Browser Helper Object. I got it working when I build it in x86. The problem is, I want to use the project on x64 the BHO extension isn't working when it's built on x64.
The extension shows up in the Internet Explorer add-ons…

Dennis van Dalen
- 589
- 4
- 13
12
votes
0 answers
BHO IE 9 Capture OnScroll Event if a site has the meta tag content="IE=9"
I recently noticed that I'm unable to capture the OnSroll events of the "top" window in my BHO if I'm showing a page in IE9 and the page contais the tag: .
I capture the scroll by sinking the…

João Augusto
- 2,285
- 24
- 28
12
votes
1 answer
Some questions about using CComPtr (when use Release()? Can I return CComPtr?, ...)
I writing add-on for Internet Explorer(BHO) and I'm using CComPtr smart pointers. I wonder:
When should I use CComPtr.Release() function?
In this this link it's used to release
browser object. Where else should I use it? In 'normal' use (with…

Mariusz Pawelski
- 25,983
- 11
- 67
- 80
12
votes
1 answer
Is there any difference in JavaScript injection and bookmarklet?
As per the Wikipedia article on Bookmarklets (http://en.wikipedia.org/wiki/Bookmarklet), the concept of Bookmarklets is:
Web browsers use URIs for the href attribute of the tag and for
bookmarks. The URI scheme, such as http:, file:, or ftp:,…

Nishchay Sharma
- 1,314
- 1
- 9
- 18
11
votes
2 answers
Calling C# BHO methods from Javascript
I'm trying to figure out how to call C# methods in my BHO object from Javascript within the page. I found numerous pages on how to do it in C++/ATL/Com such as:
Browser Helper Objects and Scripts Options
Calling BHO method from Javascript?
I have…

fixedpoint
- 1,575
- 1
- 17
- 24
11
votes
1 answer
Calling BHO method from Javascript?
I am trying to call my BHO method from the javascript. The problem is same as stated in the the following posts:
Call BHO from Javascript…

Favonius
- 13,959
- 3
- 55
- 95
10
votes
1 answer