Hello. I have a non-GUI application that I'd like to add
a wxpy gui to.
The problem is that it already has it's own event loop that
waits on several win32 event objects (to cooperate with a
few threading.threads), as well as calling
pythoncom.PumpWaitingMessages() so the COM objects get their
CPU time. I use win32event.MsgWaitForMultipleObjects() to get
all this to work, which seems to work great.
How can I integrate wx's event mechanism into my code
rather than just calling application.MainLoop()?
thanks,
mike