473,383 Members | 1,795 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,383 software developers and data experts.

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.
-- mi***@mikea.ath.cx (Mike Andrews)
Jul 18 '05 #1
3 9396
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
Jul 18 '05 #2
"Cousin Stanley" <Co***********@hotmail.com> writes:
Your win32 script for connecting to open IE instances
works fine for me using ....

Win98_SE
Python 2.2.1


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.
-- mi***@mikea.ath.cx (Mike Andrews)
Jul 18 '05 #3
> 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.


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

Jul 18 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Randy Jackson | last post by:
Hello everyone. First of all, apologies in advance if this is a question that gets asked all the time. I tried to search, but wasn't really sure exactly what to search for. Anyway, here's...
1
by: bjwang | last post by:
Hello wisers, We are testing a system which is developed on top of Oracle 9iAS. The client PCs are using Internet Explorer to access the system. We are sure that the Oracle 9i database server is...
12
by: SunshineGirl | last post by:
I'm trying to receive events from a running instance of Internet Explorer. So far I've only been able to receive events from an instance I launch from code, but I need to receive events from all...
0
by: Florin M | last post by:
I am running a custom application developed with ASP.NET 1.1, C# and Visual Studio 2003. I recently installed SP2 for XP Professional. When I close the Internet Explorer window where the app...
6
by: Thomas | last post by:
Hi, I'm having a problem with the dynamically created inputfields in Internet Explorer. The situation is the following: - I have a dynamically created table with a textbox in each Cell. - It...
11
by: GHUM | last post by:
Hello, I created some rather complex Intranet Application, using lots of JavaScript, DOM-Maninpulation and XMLHTTPRequest communication. I developed on FireFox, with the excellent firebug ......
4
by: redoix | last post by:
Sometimes There To Many Instance Of The Internet Browsing Page Running On The Taskbar. This Slows Down Connection.how Do I Limit The Instances Of Internet Browsers So That One The Limit Is Reached...
26
by: Prisoner at War | last post by:
Hi, All: I have a JavaScript search engine that always causes MSIE 7 to do a top-of-page security "warning" (that top-of-page-bar, and not an "alert" )...but other websites' JavaScripts do not...
0
by: Bill Corry | last post by:
I have been trying to get an instance of internet explorer to navigate to a website using the Navigate2 command. When the navigation request uses the Get method (just a URL) there is no problem. ...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.