Re: [python-win32] newby to com and a problem with events

2007-10-05 Thread Seth Sims
Hi, Does anyone have anything else I can try to fix my problem? I know that events are being fired because of their side effects on the COM object state. However I never see my little print messages from the event handler. I feel like it is just something small that I am missing. Thank you

Re: [python-win32] newby to com and a problem with events

2007-10-02 Thread Seth Sims
Ok I have attempted that but with no success. I added: timeout = time.time() + 30 while time.time() <= timeout: print 'pumping messages' pythoncom.PumpWaitingMessages() time.sleep(0.5) Aside from the 60 'pump messages' prints the output is unchanged. As I

[python-win32] newby to com and a problem with events

2007-10-01 Thread Roger Upole
Seth Sims wrote: > Hello everyone, > > I am having a problem receiving events from some com objects I am working > with. win32com has performed beautifully so far > and the code can call methods and manipulate properties with no problems. > However I cannot seem to figure out why I am not >

[python-win32] newby to com and a problem with events

2007-10-01 Thread Seth Sims
Hello everyone, I am having a problem receiving events from some com objects I am working with. win32com has performed beautifully so far and the code can call methods and manipulate properties with no problems. However I cannot seem to figure out why I am not receiving events. It is proba