Re: [python-win32] Using os.startfile() for automation

2011-02-03 Thread Tony Cappellini
Date: Fri, 4 Feb 2011 10:42:37 +1100 From: "Andrew MacIntyre" To: python-win32@python.org Subject: Re: [python-win32] Using os.startfile() for automation [SEC=UNCLASSIFIED] Message-ID: >>Other than COM, application automation on Windows requires Windows API >>p

Re: [python-win32] Using os.startfile() for automation

2011-02-03 Thread Tony Cappellini
Message: 5 Date: Thu, 3 Feb 2011 13:18:40 -0800 From: Tim Roberts To: Python-Win32 List Subject: Re: [python-win32] Using os.startfile() for automation Message-ID: <4d4b1bb0.8070...@probo.com> Content-Type: text/plain; charset="ISO-8859-1" >>Ah, so you're saying

Re: [python-win32] Using os.startfile() for automation [SEC=UNCLASSIFIED]

2011-02-03 Thread Andrew MacIntyre
[apologies for top post] All there is to know about os.startfile() is in Python's docs. The only way to achieve the effect you desire is to do what the "Start Menu..." action does - explicitly open an instance of the application (and not all applications will open new instances; some will alwa

Re: [python-win32] Using os.startfile() for automation

2011-02-03 Thread Tim Roberts
Tony Cappellini wrote: > > On Windows XP, I'm able to launch the application associated with > file1.xxx. > > os.startfile("file1.xxx") > > I want to start more instances of the application, so that I can > process several files at the same time. > > calling os.startfile("file2.xxx") causes the ins