Re: using wxPython events inside a loop

2006-05-18 Thread Miki
Hello BigSmoke, You can process one at a time in an "OnIdle" handler, this way you'll work only when the application is doing nothing. HTH, Miki, http://pythonwise.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: using wxPython events inside a loop

2006-05-17 Thread Diez B. Roggisch
Mr BigSmoke wrote: > I'm writting an applicatio that that does something like this: > > class batchSpy(wx.Frame): > > def __init__(self, parent): > > wx.Frame.__init__( self, None, -1, "Batch Spy", pos = (0,0), > size = mySize) > do layout ... > > self.searchAlarms() > >

using wxPython events inside a loop

2006-05-17 Thread Mr BigSmoke
I'm writting an applicatio that that does something like this: class batchSpy(wx.Frame): def __init__(self, parent): wx.Frame.__init__( self, None, -1, "Batch Spy", pos = (0,0), size = mySize) do layo