Re: Event handling for COM object with win32com (pywin32)

2014-06-22 Thread Kevin Walzer
On 6/22/14, 5:15 AM, peter.balazo...@emspin.com wrote: Do I miss something in code or incorrectly handling the events or COM Object? There is a pywin32 mailing list that may be able to offer more help here. -- Kevin Walzer Code by Kevin/Mobile Code by Kevin http://www.codebykevin.com http://ww

Re: Event handling for COM object with win32com (pywin32)

2014-06-22 Thread Chris Angelico
On Sun, Jun 22, 2014 at 9:55 PM, wrote: > You right, this is a typo here - I am sorry for this but event handler does > not work... fmstr application is freezing and event handler does not work. I > need to restart python to unfreeze my application. > I can't help further, then. I'm not experi

Re: Event handling for COM object with win32com (pywin32)

2014-06-22 Thread peter . balazovic
On Sunday, June 22, 2014 12:09:51 PM UTC+2, Chris Angelico wrote: > On Sun, Jun 22, 2014 at 7:15 PM, wrote: > > > This code works on python console but there is no event fired. > > > > > class fmstrEvents(object): > > > ... def OnRecroderDone(self): > > > ... print "

Re: Event handling for COM object with win32com (pywin32)

2014-06-22 Thread Chris Angelico
On Sun, Jun 22, 2014 at 7:15 PM, wrote: > This code works on python console but there is no event fired. > class fmstrEvents(object): > ... def OnRecroderDone(self): > ... print "Hello OnRecroderDone" Is that supposed to say "OnRecroderDone" or "OnRecorderDone"? I can't

Event handling for COM object with win32com (pywin32)

2014-06-22 Thread peter . balazovic
Dears, I have a problem with firing Events and event handling on COM object. This code works on python console but there is no event fired. >>> class fmstrEvents(object): ... def OnRecroderDone(self): ... print "Hello OnRecroderDone" >>> import win32com.client >>> fm = win32