The Artima Developer Community
Sponsored Link

Python Buzz Forum
Listing shell windows

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Simon Brunning

Posts: 679
Nickname: simonb
Registered: Jul, 2003

Simon Brunning is keen on Python. And uses Java rather a lot.
Listing shell windows Posted: Jul 5, 2005 9:41 AM
Reply to this message Reply

This post originated from an RSS feed registered with Python Buzz by Simon Brunning.
Original Post: Listing shell windows
Feed Title: Small Values of Cool
Feed URL: http://www.brunningonline.net/simon/blog/index-PnJ.xml
Feed Description: Simon Brunning - stuff that I find interesting
Latest Python Buzz Posts
Latest Python Buzz Posts by Simon Brunning
Latest Posts From Small Values of Cool

Advertisement
Having read Raymond Chen's Using script to query information from Internet Explorer windows, well, how could I resist? import win32com.client shell = win32com.client.gencache.EnsureDispatch("Shell.Application")   windows = shell.Windows() for window in (windows.Item(index) for index in range(1, windows.Count+1)):     if window:         print window.LocationName, '=', window.LocationURL Quite pointless, but there you...

Read: Listing shell windows

Topic: Opera RSS to OPML Previous Topic   Next Topic Topic: a sad little email thread...

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use