> 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

_______________________________________________
Python-win32 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to