Christian Heimes wrote:
Ray wrote:
I already find the way to fix it. :-)
I consider it good style when people describe their solution to a
problem, too. Other Python users may run into the same issue someday. :)
Christian
He probably used: pythoncom.CoInitialize()
--
MPH
http://blog.dcu
Ray wrote:
I already find the way to fix it. :-)
I consider it good style when people describe their solution to a
problem, too. Other Python users may run into the same issue someday. :)
Christian
--
http://mail.python.org/mailman/listinfo/python-list
I already find the way to fix it. :-)
--
http://mail.python.org/mailman/listinfo/python-list
Hi, I have a problem with thread and win32com.client
running python 2.5 on vista (activestate python)
import win32com.client, thread
def child(test):
problem=win32com.client.Dispatch("WScript.Shell")
print 'hello from thread', test
def parent():
i=0
while 1: