Hi,

I create a COM-interface with this methods:

COM-Server:

   def __init__(self):
        self.hError = win32event.CreateEvent(None,0,0,None)

    def SetErrorHandle(self):
        return self.hError

When I start a WaitForSingleObject-Command on the other side, python tells
me, that is not a PyHANDLE. How I can get a reference from the event over
the COM-Interface?

COM-Client:

        hErrorDSP=dsp.SetErrorHandle
        win32event.WaitForSingleObject(hErrorDSP, win32event.INFINITE)

Thanks
Marc
_______________________________________________
ActivePython mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/activepython

Reply via email to