Re: Making it a MultiThread!

2013-09-24 Thread Piet van Oostrum
stas poritskiy stascr...@gmail.com writes: Thanks for getting back to me, so i assume it is OK to have a very very long file? The sample code i posted here is basically the barebones of the main app. so, combining the GUI-file(gui.py) with main code is acceptable? Separating them into

Re: Making it a MultiThread!

2013-09-23 Thread stas poritskiy
Thanks for getting back to me, so i assume it is OK to have a very very long file? The sample code i posted here is basically the barebones of the main app. so, combining the GUI-file(gui.py) with main code is acceptable? Separating them into modules was initially the attempt to keep things in

Re: Making it a MultiThread!

2013-09-21 Thread Piet van Oostrum
stas poritskiy stascr...@gmail.com writes: I am working on integration of multiple GUI (Tkinter) elements, such a progress bar, label update, etc, and throughout my research i discovered that i need to have Threading modules used to distribute the calls for GUI update and processing of my

Re: Making it a MultiThread!

2013-09-21 Thread Chris Angelico
On Sun, Sep 22, 2013 at 11:00 AM, Piet van Oostrum p...@vanoostrum.org wrote: Now if your GUI actions are starting some actions that last more than a few tenths of a second, you should run these actions in another thread... Hmm. When I first learned GUI programming (on OS/2), the advice was one

Making it a MultiThread!

2013-09-20 Thread stas poritskiy
Hello All! I have a general question, i was posting here earlier while trying to troubleshoot a few things while developing an application, i was able to hit all of my goals, and make things work! Thank you all who contributed to my research, and again, sorry for poor formatting of the

Re: Making it a MultiThread!

2013-09-20 Thread stas poritskiy
On Friday, September 20, 2013 7:56:16 AM UTC-5, stas poritskiy wrote: Hello All! I have a general question, i was posting here earlier while trying to troubleshoot a few things while developing an application, i was able to hit all of my goals, and make things work! Thank you all