Re: [Tutor] Threaded FTP class

2006-10-09 Thread Bill Burns
>> I'm trying to make a small, threaded FTP app and I'm running into >> a problem. >> >> My program has a GUI (I use PythonCard) and I want the GUI to be >> responsive while network operations are going on. >> >> I assumed that if I made a class (shown below) which was sub-classed >> from threading

Re: [Tutor] Threaded FTP class

2006-10-09 Thread Kent Johnson
Bill Burns wrote: > I'm trying to make a small, threaded FTP app and I'm running into > a problem. > > My program has a GUI (I use PythonCard) and I want the GUI to be > responsive while network operations are going on. > > I assumed that if I made a class (shown below) which was sub-classed > fr