[python-win32] COM - respond to other application's event

wccppp wccppp at gmail.com
Wed Nov 9 19:04:01 CET 2005


Hello group,

I'm a beginner learning Python. Trying to automate AutoCAD. What I wanted to
know is how to receive event fired by the AutoCAD application. When a
drawing opening process is done, the application will fire an event EndOpen.
In VBA, I know how to catch and respond to this event. But do not know how
to accomplish it with Python.

import win32com.client
acad = win32com.client.Dispatch("AutoCAD.Application")
acad.Visible = True
acad.WindowState = 3
doc = acad.Documents.Open(r"C:\Drawings\test.dwg")
print ("Drawing opened.")

 <python-win32 at python.org>Thanks for your time and help,

--

Regards,
- wcc
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.python.org/pipermail/python-win32/attachments/20051109/4f59c78a/attachment.htm


More information about the Python-win32 mailing list