From: <kc1...@ya...> - 2006-07-24 23:37:10
|
Bonk, bonk, bonk!!! Arh, that feels better. Reason why my quick sample didn't work is because I am running it in single thread mode! Change: self.myThread=MyBackgroundWorker(self).run() to: self.myThread=MyBackgroundWorker(self).start() and you'll see why multi-threaded programs are superior to non-multithreaded programs. -- John Henry |