Re: [python-win32] IronPython COM

2008-07-31 Thread Tim Roberts
birdprince wrote: I have implemented a COM in C++,buy i don't know how to use this COM in IronPython. The technical details of IronPython are quite different from CPython. To talk COM, you have to use a magic subsystem called "Interop" that the people on this list will probably not know. I

[python-win32] IronPython COM

2008-07-30 Thread birdprince
I have implemented a COM in C++,buy i don't know how to use this COM in IronPython. For example: the COM's ProgID is "MyCOM1.AdvMethod".this COM have two interfaces,the default interface's name is IAdvMethod,IAdvMethod have a method which name is Add,the second interface's name is IBasicMethod.