Blair, Colin S wrote:
> Please assist me with this error:
>
> Traceback (most recent call last):
>
> print msg.Body
> File "C:\Python27\lib\site-packages\win32com\client\__init__.py", line 466,
> in
> __getattr__
> return self._ApplyTypes_(*args)
> File "C:\Python27\lib\site-packages\win32com\client\__init__.py", line 459,
> in
> _ApplyTypes_self._oleobj_.InvokeTypes(dispid, 0, wFlags, retType,
> argTypes, *args),
> pywintypes.com_error: (-2147467259, 'Unspecified error', None, None)
That's 0x80004005, which for MAPI is MAPI_E_CALL_FAILED. Very generic.
Have you run gentypes.py on Outlook? Perhaps you should try to generate
a static proxy:
ol = win32com.client.gencache.EnsureDispatch("Outlook.Application")
--
Tim Roberts, [email protected]
Providenza & Boekelheide, Inc.
_______________________________________________
python-win32 mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-win32