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,
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
___