If you're only interested in IE it may be better to use the COM APIs
in Shdocvw.dll. If you Tlbimp it you can write code like this to dump
info on all IE (and Windows Explorer) windows.
Dim ie As InternetExplorer
For Each ie In New ShellWindows()
Console.WriteLine(ie.HWND)
Console.WriteLine(ie.LocationName)
Console.WriteLine(ie.LocationURL)
Next
' Requires a reference to "Microsoft Internet Controls" ("SHDocVw.dll").
For Each IE As InternetExplorer In New ShellWindows()
MsgBox(IE.LocationURL)
Next IE
///
The time difference is only 11 minutes, that is absolute less than the
normal time that somebody can read the complete newsgroup while you are than
sending a message.
Cor
vbnetdev said:
Wasn't this what I posted or did I miss something?
--
Get a powerful web, database, application, and email hosting with KJM
Solutions http://www.kjmsolutions.com
The time difference is only 11 minutes, that is absolute less than the
normal time that somebody can read the complete newsgroup while you are
than sending a message.
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.