Connecting Tech Pros Worldwide Help | Site Map

FOUND! how to attach to running instances of Internet Explorer

 
LinkBack Thread Tools Search this Thread
  #1  
Old July 18th, 2005, 01:13 AM
gcash
Guest
 
Posts: n/a
Default FOUND! how to attach to running instances of Internet Explorer

Most folks know you can start up an instance of Internet Explorer by
saying "x=win32com.client.Dispatch('InternetExplorer.Appl ication.1')"
and you get a WIN32 object with a "Document" object that has arrays of
"Link"/"Form"/"Frame" subobjects, and methods like "Navigate" where
you can force the IE instance to browse to a new URL.

What folks would like to do is to connect to an already running
version of explorer, and this isn't so obvious.

The MS KB article you usually find is 176792 which mentions using
SHDocVw.ShellWindows to iterate through the instances. However Mark
Hammond sayes this is a "vtable interface" (whatever that is) and "not
supported by python" in
http://groups.google.com/groups?hl=e...pretection.com

HA! well, I happened to discover you can do:

import win32com.client
# look in the makepy output for IE for the "CLSIDToClassMap"
# dictionary, and find the entry for "ShellWindows"
clsid='{9BA05972-F6A8-11CF-A442-00A0C90A8F39}'
ShellWindows=win32com.client.Dispatch(clsid)
for i in range(ShellWindows.Count):
print i
# this is the titlebar value
print ShellWindows[i].LocationName
# this is the current URL
print ShellWindows[i].LocationURL
print

and the object returned by ShellWindows[n] is the exact same as the
one returned by Dispatch('InternetExplorer.Application.1')

I'm posting this here for future generations of Googlers.

So I'm running Win2K Pro... and I'm curious about what versions this
works under. I'm pretty sure you have to have IE 5.0 or newer, but
could folks try this code on 95/98 and tell me (gcash-at-cfl.rr.com)
if it works??

Also, I haven't been able to determine if there's a better name of the
form 'InternetExplorer.Application.1' instead of using the horrid
class-id. How do you do that? The makepy output for explorer doesn't
list one.

Thanks to Mark Hammond for win32all, it is a true work of art, and is
teaching an old UNIX hack lots of Windows stuff.

-gc

--
I've never tried emacs because I already _have_ an OS on this peecee.
-- mikea@mikea.ath.cx (Mike Andrews)

  #2  
Old July 18th, 2005, 01:14 AM
Cousin Stanley
Guest
 
Posts: n/a
Default Re: FOUND! how to attach to running instances of Internet Explorer

gcash ....

Your win32 script for connecting to open IE instances
works fine for me using ....

Win98_SE
Python 2.2.1

Displays info for open IE instances
for both local and remote pages ....

--
Cousin Stanley
Human Being
Phoenix, Arizona


  #3  
Old July 18th, 2005, 01:14 AM
gcash
Guest
 
Posts: n/a
Default Re: FOUND! how to attach to running instances of Internet Explorer

"Cousin Stanley" <CousinStanley@hotmail.com> writes:
[color=blue]
> Your win32 script for connecting to open IE instances
> works fine for me using ....
>
> Win98_SE
> Python 2.2.1[/color]

Awesome! That gives me hope it isn't some one-off WIN2K thing.
Cool! Thanks.

-gc

--
I've never tried emacs because I already _have_ an OS on this peecee.
-- mikea@mikea.ath.cx (Mike Andrews)
  #4  
Old July 18th, 2005, 01:15 AM
Jordan Tucker
Guest
 
Posts: n/a
Default Re: FOUND! how to attach to running instances of Internet Explorer

> Also, I haven't been able to determine if there's a better name of the[color=blue]
> form 'InternetExplorer.Application.1' instead of using the horrid
> class-id. How do you do that? The makepy output for explorer doesn't
> list one.[/color]

The relevant MSDN page[1] lists the ProgID as 'Shell.Windows' or
'ShellWindows._NewEnum'; however when trying to dispatch with either as the
class string fails. Also, searching the registry reveals nothing for the
CLSID.

[1] http://tinyurl.com/ix1z , i.e.
http://msdn.microsoft.com/library/de.../objectmap.asp



 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,662 network members.