[python-win32] Starting a GUI app from AddIn server

2006-03-21 Thread Johannes Brunen
Hi, I'm facing the following problem: I have written an AddIn server which is called from a GUI application. After some action in the GUI app the function DoSomething of class CmdEvtHandlerStartApp is called. This works pretty fine. class AddInBase: Base class for CADdy++ AddIns.

Re: [python-win32] win32com and VS .Net

2005-08-09 Thread Johannes Brunen
) theWindow.Visible = 1 if __name__ == '__main__': main() Alex Willmer [EMAIL PROTECTED] schrieb im Newsbeitrag news:[EMAIL PROTECTED] On Mon, 2005-08-08 at 14:23 +0200, Johannes Brunen wrote: Hi, I have the following problem: I would like to control the MS Dev .Net 2003 Studio from a python script

[python-win32] COM server AddIn

2005-07-05 Thread Johannes Brunen
Hi, I have a problem implementing a simple COM server AddIn which should satisfy a special COM interface provided by an application I'm using. The server application: CADdy.exe = type library CADdy.tlb The AddIn interface of CADdy.tlb: ICADdyAddIn From

[python-win32] Newbee problem on dispatch interface

2005-06-20 Thread Johannes Brunen
Hi, I have a problem connecting to a COM server with a small test script using python 2.3.5 as well as 2.4.1: import win32com.client from win32com.client import gencache def main(): g1 = gencache.EnsureModule('{9C3BB401-114D-11D4-AC72-00105A4925FC}', 0, 1, 3) theCADdy =

[python-win32] Problem with gencache.EnsureModule

2005-06-06 Thread Johannes Brunen
Hi, First, I'm new to this list as well as new to python/pythonCom. I have tried to connect to a COM server installed on my machine with this little script: import win32com.client from win32com.client import gencache def main():