Internet Activity

  • Thread starter Thread starter Alex
  • Start date Start date
A

Alex

Hello ALL,

Not sure if something like this can be done; I'm new in .NET and
programming.

Recently I was asked if I could create a program that can record
Internet Activity using VB2005. I was thinking about loading a service
into the client that will monitor IE usage whenever it's has focus and
report this data to a db for reporting.

Does anyone know if there's a .Net class out there that can do the job?
Any idea on the best way to accomplish this?

I'll be using VB 2005 / Framework 2.0

Thanks you in advance...

Alex
 
Hello Alex,

You need to enumerate all WebBrowsers window, then try to get WebBrowser.LocationURL
property

See
176792 HOWTO: Connect to a Running Instance of Internet Explorer
http://support.microsoft.com/?id=176792

---
WBR,
Michael Nemtsev [C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

A> Hello ALL,
A>
A> Not sure if something like this can be done; I'm new in .NET and
A> programming.
A>
A> Recently I was asked if I could create a program that can record
A> Internet Activity using VB2005. I was thinking about loading a
A> service into the client that will monitor IE usage whenever it's has
A> focus and report this data to a db for reporting.
A>
A> Does anyone know if there's a .Net class out there that can do the
A> job? Any idea on the best way to accomplish this?
A>
A> I'll be using VB 2005 / Framework 2.0
A>
A> Thanks you in advance...
A>
A> Alex
A>
 
Back
Top