Re: [dabo-users] Progress Dialog for long running tasks

2008-10-20 Thread Ed Leafe
On Oct 19, 2008, at 5:37 PM, - wrote: Has anyone implemented a progress dialog for long running tasks? I want to implement multithreading for a particularly long running task (http://wiki.wxpython.org/LongRunningTasks) and to update the user on the progress with the (potentially

Re: [dabo-users] Progress Dialog for long running tasks

2008-10-20 Thread Nate Lowrie
On Mon, Oct 20, 2008 at 8:33 AM, Ed Leafe [EMAIL PROTECTED] wrote: On Oct 19, 2008, at 5:37 PM, - wrote: Has anyone implemented a progress dialog for long running tasks? I want to implement multithreading for a particularly long running task (http://wiki.wxpython.org/LongRunningTasks) and to

Re: [dabo-users] Progress Dialog for long running tasks

2008-10-20 Thread Henning Hraban Ramm
Am 2008-10-20 um 16:15 schrieb Nate Lowrie: I have done this several times. The most important thing that I can say is in your thread which is running the long task, never have any lines of code that set the properties of UI widgets. You will get a strange error if you try to set them outside

[dabo-users] Progress Dialog for long running tasks

2008-10-19 Thread -
Hi, Has anyone implemented a progress dialog for long running tasks? I want to implement multithreading for a particularly long running task (http://wiki.wxpython.org/LongRunningTasks) and to update the user on the progress with the (potentially concurrent tasks) with a progress dialog.  I