Re: [python-win32] simulate DoEvents by python/wxpython

2005-10-26 Thread Mark Hammond
Build 205 of win32gui does have PeekMessage etc so you can now write the message loop in Python should the need arise - however, the various "PumpMessages" and "PumpWaitingMessages" functions do the same thing, but are implemented in C. There are versions of these functions in win32gui and win32ui

[python-win32] simulate DoEvents by python/wxpython

2005-10-26 Thread James Hu
Hi, all gurus,   I  need to simulate DoEvents in VB by python/wxPython, My application needs to capture live image in a loop until one specific button pressed Multi-thread is also not very good solution, for there are big number of data to exchange between the two threads.   Win32g