How to catch Internet Explorer events?

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.
 
R

RobinS

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.
 
T

Tal Shachar

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top