Re: Specification for win32com.client package

2007-05-10 Thread Peter Fischer
Hello Tim, thank you for your quick and detailed reply. So I will try it at the python-win32 list. Many thanks for your help and if you want I will let you know when I know more. Best regards, Peter. - Need Mail bonding? Go to the Yahoo! Mail Q&A for great tip

Re: Specification for win32com.client package

2007-05-08 Thread Peter Fischer
st regards, Peter. Tim Golden <[EMAIL PROTECTED]> wrote: Peter Fischer wrote: > Hello, (sorry, the first message bounced; because it is urgent and I wait > since > yesterday, here it's again): > > > I am searching for documentation about the interface the win3

Specification for win32com.client package

2007-05-08 Thread Peter Fischer
Hello, (sorry, the first message bounced; because it is urgent and I wait since yesterday, here it's again): I am searching for documentation about the interface the win32com package provides, especially win32com.client. I searched the web and Mark Hammond’s homepage but only found example

Specification for win32com.client package?

2007-05-08 Thread Peter Fischer
Hello, I am searching for documentation about the interface the win32com package provides, especially win32com.client. I searched the web and Mark Hammond’s homepage but only found example code using Dispatch() and DispatchEx() etc. Isn’t there a full list of the functions win32.com.clien

Re: how to use Dispatch to open an application in win32com.client

2007-05-03 Thread Peter Fischer
Dear Python/DCOM experts, I just tried to do a remote dispatch of Google Earth in DCOM, but it didn't work: import pythoncom, win32com.client clsctx=pythoncom.CLSCTX_LOCAL_SERVER i = win32com.client.DispatchEx("GoogleEarth.ApplicationGE", "IAD-PC10", clsctx=clsctx)

Re: how to use Dispatch to open an application in win32com.client

2007-05-03 Thread Peter Fischer
Hello Tim, Thank you for your answer. I just tried, but it didn't work. The reason seems to be that Google Earth prevents a second instance to run on the same machine. Maybe for licensing reasons (do you know whether it is legal to bypass this and how to do this?). So that is no python/COM problem

Re: how to use Dispatch to open an application in win32com.client

2007-05-02 Thread Peter Fischer
Hello, I also use the COM API via python to dispatch an application. My problem now is that I want to dispatch a second instance of this application (Google Earth by the way). But when I invoke dispatch the second time, nothing happens although using another variable to store the returned value: