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
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()
>
>
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