Тю… сорь, с формой уже справился)
почему не работает такой скрипт,? как запустить PAMIE в потоках,?
from cPAMIE import PAMIE
import threading
def proc(n):
ie=PAMIE()
p1 = threading.Thread(target=proc, name=“t1”, args=)
p1.start()
почему не работает такой скриптА что значит - не работает? Как он долежен работать?
That error means “CoInitialize has not been called *on this thread*”. Try
calling pythoncom.CoInitialize() at the top of your script - it should not
throw an error if it has already been called.