Home All Groups Group Topic Archive Search About

How to catch Internet Explorer events?

Author
10 Nov 2006 2:54 PM
Tal Shachar
Hello,
I'm building a windows application, and I need to catch the open Microsoft
Internet Explorer events (e.g. changed url, new browser window opened,
current active browser, etc.) - Can anyone assist me with that? I managed to
know the location url of the open browsers by doing the following:
using SHDocVw;
......

foreach (InternetExplorer ie in new ShellWindows())
{
    string url = ie.LocationURL;
}

......

But that's it, I don't know how to continue from here (and if this is the
direction...), any ideas?

Appreciate all the help I can get.

TIA,

  -  Tal.

Author
10 Nov 2006 10:31 PM
MikeS
I think the mechanism that the vendor provides to achieve this
functionaly is called Broswer Helper Objects.

http://msdn.microsoft.com/library/en-us/dnwebgen/html/bho.asp?frame=true
Author
12 Nov 2006 6:41 PM
Tal Shachar
Thanks Mike, I'll check it out.

Show quoteHide quote
"MikeS" <michael.spen***@gmail.com> wrote in message
news:1163197878.763560.246080@k70g2000cwa.googlegroups.com...
>I think the mechanism that the vendor provides to achieve this
> functionaly is called Broswer Helper Objects.
>
> http://msdn.microsoft.com/library/en-us/dnwebgen/html/bho.asp?frame=true
>