Re: [Tkinter-discuss] thread module

2008-04-06 Thread Amit Finkler
Hi all, [EMAIL PROTECTED] wrote: > Hi Amit, > > >> 1. I created a global variable named "QuitThread" on my main module. >> 2. I initially set it to "False". >> 3. When clicking on the "Run" button of my GUI (defined in the main >> module), a new thread starts using start_new_thread, whe

Re: [Tkinter-discuss] thread module

2008-04-05 Thread mkieverpy
Hi Amit, >1. I created a global variable named "QuitThread" on my main module. >2. I initially set it to "False". >3. When clicking on the "Run" button of my GUI (defined in the main >module), a new thread starts using start_new_thread, where QuitThread is >one of the variables in its tuple

Re: [Tkinter-discuss] thread module

2008-04-02 Thread Amit Finkler
Tim Jones wrote: > On Apr 1, 2008, at 6:05 AM, Amit Finkler wrote: > >> Hi, >> >> Following a previous post of mine (http://mail.python.org/pipermail/ >> tkinter-discuss/2008-March/001320.html), I finally managed to start >> a new thread using the thread module. This new thread is started by

Re: [Tkinter-discuss] thread module

2008-04-02 Thread Amit Finkler
Tim Jones wrote: > On Apr 1, 2008, at 6:05 AM, Amit Finkler wrote: > >> Hi, >> >> Following a previous post of mine (http://mail.python.org/pipermail/ >> tkinter-discuss/2008-March/001320.html), I finally managed to start >> a new thread using the thread module. This new thread is started by

Re: [Tkinter-discuss] thread module

2008-04-01 Thread Tim Jones
On Apr 1, 2008, at 6:05 AM, Amit Finkler wrote: > Hi, > > Following a previous post of mine (http://mail.python.org/pipermail/ > tkinter-discuss/2008-March/001320.html), I finally managed to start > a new thread using the thread module. This new thread is started by > clicking on a button on m

[Tkinter-discuss] thread module

2008-04-01 Thread Amit Finkler
Hi, Following a previous post of mine (http://mail.python.org/pipermail/tkinter-discuss/2008-March/001320.html), I finally managed to start a new thread using the thread module. This new thread is started by clicking on a button on my Tkinter GUI and it just continuously plots a graph using matplo