3
votes
1answer
468 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 …
3
votes
3answers
201 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 …
3
votes
2answers
656 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 I …
3
votes
2answers
278 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 …
2
votes
3answers
277 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 be …
1
vote
2answers
42 views
Debugging .NET Problems on Remote User PCs
I support a .NET IE Toolbar, for a population of users that have a variety of OS and IE versions, in a variety of remote locations. For a small number of these users, the toolbar …
1
vote
0answers
31 views
How does Google get a toolbar right below the tabs in IE?
I researched through all BHO related documentation, but I just can't figure how Google gets the translation toolbar right below the tabs in IE.
Any useful pointers how to achieve …
1
vote
2answers
46 views
How to create a floating div in BHO dynamically?
Hi all,
How do I create a floating DIV in a web page on load using BHO with C#.NET?
I just want to inject an HTML code snippet for DIV that will display "Hello World" on the page …
1
vote
2answers
79 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 HtmlPageEventMa …
1
vote
3answers
98 views
Handle when IE window moves - Visual C++
I want to handle window move events. My first try was to handle DWebBrowserEvents2::WindowSetHeight, WindowSetLeft, WindowSetTop and WindowSetWidth events, but for some reasons, th …
1
vote
1answer
235 views
Handle HTMLElementEvents2 when DWebBrowserEvents2 has been handled using ATL’s macros
I'm creating a Browser Helper Object using VS2008, C++. My class has been derived from IDispEventImpl among many others
class ATL_NO_VTABLE CHelloWorldBHO :
public CComObjectR …
1
vote
3answers
101 views
How to find out what “kind” of document is being displayed in IE
Hi, i am using c# to create a button for IE and this button performs certain actions that all depend on the document being a PDF document. I am trying to setup a guard to prevent a …
1
vote
2answers
412 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 …
1
vote
1answer
179 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 ass …
1
vote
3answers
955 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 …
