Re: [Tutor] Threading in a for loop

2005-09-23 Thread Bill Burns
[Kent Johnson] Here are some more resources for you. This cookbook recipe is very similar to what you want to do, just customize workerThread1 to do the actual work. It shows how to use a Queue to communicate back to the GUI thread. http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/82965

Re: [Tutor] Threading in a for loop

2005-09-22 Thread Kent Johnson
Here are some more resources for you. This cookbook recipe is very similar to what you want to do, just customize workerThread1 to do the actual work. It shows how to use a Queue to communicate back to the GUI thread. http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/82965 Here are a coup

Re: [Tutor] Threading in a for loop

2005-09-22 Thread Kent Johnson
Bill Burns wrote: > I've got a few questions regarding Threading. I've never used threads > before and I want to make sure I'm doing it correctly ;-) > > I have a GUI app and it processes Tiff files to PDF (or PostScript). The > GUI has a ListBox which the user populates with files to convert. You

[Tutor] Threading in a for loop

2005-09-20 Thread Bill Burns
I've got a few questions regarding Threading. I've never used threads before and I want to make sure I'm doing it correctly ;-) I have a GUI app and it processes Tiff files to PDF (or PostScript). The GUI has a ListBox which the user populates with files to convert. You click on a Button and the f