Tobias Oberstein wrote:
> ...
> and get a generic COM exception when the RTD server tries to notify
> Excel of data changes (from the trace collector):
> ...
> The COM Error is: "generic COM exception 0x80020009"
>
> The callpath that leads to the exception is:
>
>
> excelRTDServer.py
> ==============
>
> L281 ff:
>
> class TimeServer(ExcelRTDServer):
> ..
>   def __init__(self):
> ..
>     self.ticker = threading.Timer(self.INTERVAL, self.Update)

Does that actually create a new thread?  If so, every new thread has to
call CoInitialize before it does any COM actions.

-- 
Tim Roberts, t...@probo.com
Providenza & Boekelheide, Inc.

_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to