How to catch Internet Explorer events?

  • Thread starter Thread starter Tal Shachar
  • Start date Start date
T

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.
 
Instead of posting the same message to multiple groups one
at a time, post to them all at once. That way, if someone
provides a solution in one group (as they have over in
microsoft.public.dotnet.framework.clr), the answer gets
posted to all of the groups, and people are not still
searching for an answer for you.

Robin S.
 
Robin,
Thanks for clarifying that. I'll remember it next time I need to post a
message to multiple groups.
 
Back
Top