[python-win32] Dispatches With Events on COM Object

Mark Hammond mhammond at skippinet.com.au
Fri Aug 4 00:04:07 CEST 2006


> print dir(mod)
> ob = mod.Application

Try adding parens after that line - currently 'ob' is the class, where you
want an instance of the class.

ob = mod.Application()

That may get closer.

Mark



More information about the Python-win32 mailing list