Hello i have a problem with thread and wxpython on WIN32.
With this script :
I would like to SetValue to my gauge widget in a thread.
I can GetValue without a hitch but if I SetValue it freezing.
Try following script and go to AF-Tools Menu and click install
Normally in the install thread, I wr
first problem:
With Idle environnement under Win32, all freeze after with bunch of
code:
#!/usr/bin/python
import threading,time
class T (threading.Thread) :
def __init__(self,_a,_b) :
threading.Thread.__init__(self)
self.a = _a
self.b = _b
def run(self) :