Browser Helper Object (BHO) in VB.NET

Joined
Jun 22, 2004
Messages
5
Programming Experience
10+
All:

I have searched these forums for examples of BHO creation with VB.NET and found a few links that no longer exist.

I want to write a browser helper object (BHO) in VB.NET, but quite honestly have no idea where to start. I have read a lot of stuff about writing BHOs, but most of them deal with languages I am unfamiliar with. I would prefer VB.NET (not VB6) if possible. Anything with a tutorial or resources how to get started would be great. (I read that they could be written in any language is the reason I assume it is possible.)

Thanks.

vs
 
The Microsoft article linked below is a good start:
"How To Handle Document Events in a Visual Basic .NET Application"
http://support.microsoft.com/?kbid=311284

For actually implementing a BHO as a COM object there is little examples to find for VB.Net. Here is an article for C# with much good info and source code:
"Build a Managed BHO and Plug into the Browser"
http://www.15seconds.com/issue/040331.htm
It should be managable if you get to that point, to translate from C# to VB.Net.
 
Back
Top