Hello everyone,
Is there an example program that might help me learn how to run to different
frames simultaneously? I would like frame and frame2 to be able to execute
simultaneously doing independent tasks. The two objects need to run in
independent threads so they may do simultaneous but independent tasks.
*For example:
class MyApp(wx.wxApp):
def OnInit(self):
frame = AppFrame(wx.NULL, -1, "12/29/2003")
frame.Show(True)
self.SetTopWindow(frame)
frame2 = AppFrame(wx.NULL, -1, "1/19/2004")
frame2.Show(True)
self.SetTopWindow(frame2)
return True
Any input be greatly appreciated,
Todd