Tagged Questions

A Browser Helper Object (BHO) is a DLL module designed as a plugin for Microsoft's Internet Explorer web browser to provide added functionality.

learn more… | top users | synonyms

10
votes
3answers
1k views

How to Access AppData in IE Protected Mode (from a Managed BHO)

I am writing an IE Extension (BHO) in C#. When run in protected mode (IE's new UAC-compliant mode which forces all extensions to run at low-integrity), it fails because it cannot access user.config ...
7
votes
1answer
464 views

How to copy access Database file, mdb from program files to Isolated Storage in c#

I am building an IE Addon or Extension using C#. I have created an Access Database MDB file which will be in the Program files. Now at runtime I need to copy this MDB file to Isolated Storage so that ...
6
votes
3answers
350 views

Port a firefox extension to a BHO (Browser Helper Objects, aka IE extensions)

I have a Firefox extension that I would like to port to IE, I don't want to code it again. Is there something that can help me? It could come in very different ways: An IE BHO that can render a ...
5
votes
4answers
896 views

Sandboxed Javascript Execution in an Internet Explorer Extension (BHO)

Firefox has the Sandbox and evalInSandbox(). Chrome has sandboxed execution in their content scripts (they call it isolated execution). I'm looking for the same thing in an IE browser extension. I ...
5
votes
2answers
3k views

Why does DebugView not show debugging messages when Visual Studio does

I am developing a Browser Helper Object running inside Internet Explorer. I am writing debugging messages with ATLTRACE("..."); These appear fine when Visual Studio is attached to the iexplore.exe ...
4
votes
2answers
695 views

Problem catching OnClick event using HTMLDocumentEvents2 in a BHO

I am running a BHO and i am trying to catch OnClick events using HTMLDocumentEvents2 however, the events never seem to reach the handler this is what i am doing: class ATL_NO_VTABLE CBlastBhoBHO : ...
3
votes
2answers
198 views

Next steps debugging crash in customer environment

Part of our product is an IE plugin (BHO), which is running happily in lots of different environments across multiple OS versions/IE versions. However, in a trial setup for one customer, running XP ...
3
votes
0answers
93 views

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: <meta http-equiv="X-UA-Compatible" ...
3
votes
0answers
391 views

Failed to call a BHO method from Javascript in IE9

I am trying to call a BHO object method from a javascript function (the javascript is injected by the BHO using IHTMLWindow2 execScript). -------------javascript------------------- function foo() { ...
3
votes
2answers
284 views

Can I use c++ to traverse DOM from C# BHO?

I'm writing a Browser Helper Object (BHO) for Internet Explorer in C#! I want to look for text nodes in the DOM, which requires me to traverse the whole DOM tree if I want to differentiate between ...
3
votes
1answer
563 views

C# IE BHO: How do I marshal DOM objects to a worker thread?

I am trying to write a Browser Helper Object (BHO) in C# that manipulates the DOM on a separate thread. I've seen several other questions related to this, and the answer seems to be "you need to ...
3
votes
1answer
133 views

How to supress the warning in IE's protected mode

I have a BHO which captures webpages as images and I run another process to pngcrush the images thus created. The problem that I face in UAC enabled systems is that everytime IE runs, I get a warning ...
3
votes
2answers
390 views

Delphi. How to monitor URLs being downloaded by IE?

When you're opening page in IE it downloads lots of files, including CSS, scripts, pictures, SWFs, etc. I need to develop small plugin which will monitor all these URLs and let's say save to file this ...
3
votes
1answer
725 views

IHTMLSelectionObject.createRange() throws UnauthorizedAccessException

I wrote the following code for retrieving the selected text from the current webpage: IHTMLDocument2 mainDoc = ... for ( int i = 0; i < mainDoc.frames.length; i++ ) { object refIndex = i; ...
3
votes
3answers
1k views

Modifying HTTP request and responses with a Browser Helper Object

I want to modify HTTP requests headers using an Internet Explorer Browser Helper Object. I basically need to change a few headers for every request, and then modify the response before it returns to ...
3
votes
1answer
1k views

how do i create a strong named interop dll for shdocvw.dll

I have a Browser Helper Object project in c# that (obviously) references shdocvw.dll. I think I want to create a strongly named interop dll for shdocvw.dll. How do I do this - I've seen a bunch of ...
3
votes
3answers
358 views

COM: calling from other thread causes crashes, how to make it run on the same thread?

I am doing a BHO (extension for IE) that receives events on other thread. When I access the DOM from that other thread, IE crashes. Is it possible to make the DOM accessed from the same thread as the ...
3
votes
2answers
1k views

Browser Helper Objects (BHO) in Windows Vista only with admin rights?

For a university project I programmed a Internet Explorer Browser Helper Object to process web document information while browsing. It were running successful on Windows XP with IE6 and IE7. Now I ...
3
votes
2answers
595 views

What do you use to test your browser extension / BHO?

What are the best approaches / tools to test browser extensions? In my case I work on an IE Browser Helper Object (C#) which has a small UI of its own and a good deal of database interaction. Up till ...
2
votes
1answer
102 views

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 function ...
2
votes
1answer
81 views

Internet Explorer prompts me if I want to run csc.exe while I'm running log4net methods

I'm using Log4Net within an Internet Explorer browser extension written in C#. Sometimes I get prompted by Internet Explorer saying "A website wants to open web content using this program on your ...
2
votes
1answer
191 views

How do I add an event listener to my button created in C# for IE BHO?

In my IE BHO I create a input button element using: var button = doc.createElement("input"); button.setAttribute("value", "myButton"); //next line gets an error ...
2
votes
1answer
76 views

Integrating a scan-to-file app with the browser

We have an intranet-based application, and users have desktop scanners (which are TWIAN but not WIA compatible). Users need to 'click to scan' from the browser window (IE 8) and save the scanned ...
2
votes
1answer
476 views

How can I run a <script> tag that I just inserted dynamically from a BHO

I'm completely new to developing IE extensions with Browser Helper Objects. I managed to create a BHO that successfully inserts a script tag that references a javascript file in the head of the HTML ...
2
votes
1answer
167 views

How to set the name of an bho (visible in the addon options in ie)

How can I rename the name of a browser helper object. The normal information in the properties of the dll are all fine. However when I open Internet Explorer to view the Addons the name of my Addon is ...
2
votes
1answer
223 views

ATL sample of calling (marshalling) Apartment-threaded COM interfaces from a worker thread

I'm looking for a code sample which illustrates making cross-threaded COM calls in an ATL COM Server DLL. Know one? More details: My component is an IE Browser Helper Object which needs to do work ...
2
votes
1answer
95 views

chrome:// like URLs in Internet Explorer

once again, I'm struggling with porting a Firefox extension to Internet Explorer 7, 8 and 9. My most recent problem is that the FF extension code makes heavy use of AJAX calls to "chrome://..." urls ...
2
votes
2answers
317 views

Runtime error 216 on IE when using BHO

I am working on a browser helper object written in Delphi, and when the BHO is installed and I close IE, I get the error "runtime error 216 at < address >". I suspect this could be because of the ...
2
votes
1answer
187 views

How to capture change in URL from BHO?

How can I capture a change in the URL on IE from a Browser Helper Object? An obvious way would be to use any of the common browser events such as onbeforenavigate, but how to capture a change like: ...
2
votes
2answers
427 views

Using breakpoints in visual studio 2010 for BHO in IE

I'm developing a BHO in Visual Studio 2010. So far I've managed to register the BHO and get visual studio launch IE when I hit debug. The BHO works as expected but unfortunately break points that I ...
2
votes
1answer
466 views

How to lower integrity of WCF named pipe

I have an Internet Explorer add-in, written in C#, which talks via a WCF named-pipe to a .NET desktop application. The desktop app creates the ServiceHost for the netNamedPipeBinding, and each ...
2
votes
1answer
206 views

BHO memory leak

I've written a BHO based on this tutorial: http://www.codeproject.com/KB/cs/Attach_BHO_with_C_.aspx My GetSite and SetSite are identical to the tutorials listing. I am adding/removing an ...
2
votes
2answers
377 views

Register a BHO through an NSIS installer

I have an IE BHO which I was packaging through the Visual Studio setup and deployment project. I now want to the package it through an NSIS installer. My BHO was registering in the following way: ...
2
votes
2answers
664 views

How to concatenate 2 LPOLESTR

i want to concatenate 2 strings in c++, i can't use char*. I tried the following but doesn't work: #define url L"http://domain.com" wstring s1 = url; wstring s2 = L"/page.html"; wstring s = s1 + s2; ...
2
votes
1answer
373 views

IE status bar. I need to add a clickable icon to the status bar

My bho (Browser Helper Object) is a sidebar (right-sided iframe) that needs to be opened/closed by clicking the status bar icon in IE (IE8). I didn't find any informations for clickable icons. Anyone ...
2
votes
1answer
395 views

How to change the order of toolbar buttons in Internet Explorer?

I know I can simply write to the CommandBandLayout regkey but since I don't know what format it is I'm having doubts if that is safe. Also, this answer suggest it's the wrong solution: ...
2
votes
2answers
799 views

Listening to HTML Events from BHO

I've been working on a BHO/toolbar written in C# that listens to HTML events raised on the browser's current webpage. The solution includes a reusable class called HtmlPageEventManager whose purpose ...
2
votes
2answers
822 views

Setup Project COM Registration

I have an IE BHO (a toolbar) written in C#/.NET 2.0 using COM Interop. I'm using Visual Studio 2005 to generate an MSI installer for my toolbar using the Setup Project. In my assembly, I have COM ...
2
votes
4answers
3k views

Should Form.ShowDialog(IWin32Window) work with any window handle?

When using System.Windows.Forms.ShowDialog(IWin32Window) should I be able to pass in an IWin32Window representing any window handle and have it be modal with respect to that window? As part of an IE7 ...
1
vote
1answer
29 views

Log4net inside BHO does not work?

I'm trying to use log4net with an external config file, but it does not work: nothing gets logged <?xml version="1.0" encoding="utf-8" ?> <log4net> <appender name="RollingFile" ...
1
vote
0answers
39 views

How to debug a managed BHO from Visual Studio 2010

I've a managed Explorer Bar (working in Internet Explorer) that is working reasonably well. Currently, the only way to debug it: Start IE outside VS From VS (Debug => Attach) Attach to the process ...
1
vote
2answers
77 views

How to deploy a .dll file using Visual Studio 2008?

I am creating an installer with VS 2008 containing a desktop application and a BHO plugin which is created as a Class Library project. Manually ,I can register myPlugin.dll using this command [regasm ...
1
vote
1answer
140 views

How does chrome-frame install without admin privileges?

How does Chromeframe install without admin privileges? If I wanted to create a BHO in C#, would it be possible to follow the same process? If I understand correctly, I need to save the DLL on the ...
1
vote
1answer
71 views

Measuring time of async request

What HTML Document Events should I connect to, to measure time that asnchronous request took? In synchronous request I am using BeforeNavigate2 and OnDocumentComplete events. In BeforeNavigate2 I am ...
1
vote
0answers
68 views

jquery not working in my IE extension

I've done an IE extension in C#. The basic stuff it does is just modify the content of the page after it's loaded, basically highlights some type of text. So I have a onDocumentComplete handler, which ...
1
vote
0answers
98 views

BHO C++ registering HTMLWindowEvents onbeforeunload event

I cannot get the onbeforeunload event from HTMLWindowEvents2 to work in my BHO. In my .h: class ATL_NO_VTABLE CHelloWorldBHO: public IDispEventImpl<1, CHelloWorldBHO, ...
1
vote
2answers
98 views

Where should a IE browser helper object store its data files?

I'm writing a browser helper object for internet explorer that needs to store some data on the hard disk. Is there a convention, where to store this files? Or if not - to which directory (except the ...
1
vote
1answer
92 views

How can I access the ui thread in an asynchronous httpwebrequest callback in a bho

I'm struggling to get access to the ui thread in an asynchronous httpwebrequest callback in a browser helper object. The current document and windows don't reflect those witnessed on the calling ...
1
vote
0answers
71 views

How do I append child node in an Internet Explorer BHO extension?

I am porting a firefox extension and simply trying to append a button to an node on a web page. However nothing occurs on the page. I believe it has to do something with the conversion between ...
1
vote
1answer
161 views

How to obtain IServiceProvider and IMarkupServices from HTMLDocument (mshtml)

Im doing some test creating an instance of HTMLDocument this way: object[] pageText = { "<p>some text...</p>" }; var document = new HTMLDocumentClass(); var document2 = ...

1 2 3 4 5