Link to home
Start Free TrialLog in
Avatar of WGHile
WGHile

asked on

How to hook into IE so it notifies my program when it opens

I want my program to be notified when an IE windows opens on the PC without constantly polling using a timer. I know there is a way to "hook" into IE so that it will notify my program. Points will be generous!.
Avatar of Ignacio Soler Garcia
Ignacio Soler Garcia
Flag of Spain image

As far as I know you cannot hook into IE with managed code. With .Net you must create an application that polls to check when one window has been opened.

Maybe there is a way calling extenal funcions (WindowsAPI and that kind of stuff) but I can't help in that way.
Avatar of WGHile
WGHile

ASKER

I guess the correct term would be a Browser Helper Object or BHO.
Does anyone know of any tutorials on how to create these in VB.net?
Or is that just not possible?
ASKER CERTIFIED SOLUTION
Avatar of Ignacio Soler Garcia
Ignacio Soler Garcia
Flag of Spain image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of WGHile

ASKER

This is exactly what I was looking for