On Aug 8, 2:19 am, SamG <[EMAIL PROTECTED]> wrote:
> On Aug 8, 12:01 pm, SamG <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hi,
>
> > Im trying my hand at threading with wx applications. I have written
> > the following code...
>
> > import wx
> > from threading import Thread, Lock
>
> > class createWindow(
On Aug 8, 12:01 pm, SamG <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Im trying my hand at threading with wx applications. I have written
> the following code...
>
> import wx
> from threading import Thread, Lock
>
> class createWindow(Thread):
> def __init__(self):
> Thread.__init__(self)
>
Hi,
Im trying my hand at threading with wx applications. I have written
the following code...
import wx
from threading import Thread, Lock
class createWindow(Thread):
def __init__(self):
Thread.__init__(self)
self.lock = Lock()
self.app=None
def run(self):