Re: [python-win32] com events while running wx main loop

2007-04-17 Thread Christian K.
sorry. I forgot the attachment. Christian import unittest import comtypes.client import wx class EventHandler(object): """Instances are called when the COM object fires events.""" def __init__(self, view, name): self.view = view self.name = name def __call__(self,

[python-win32] com events while running wx main loop

2007-04-17 Thread Christian K.
Hi, I'm trying to recieve com events in a wxpython application. I modified an example posted here by Thomas Heller some time ago. It seems that the events are not delivered. Am I doing something wrong or is this just a limitation of com/wxPython? Thanks for any hint, Christian ___