[python-win32] Accessing other than default COM interface

2007-04-20 Thread Wikström Sven
Hi. I'm a COM newbie so please excuse my ignorance! I have a coclass exposing a set of interfaces to COM: coclass ICAList { [default] interface _ICAList; interface _Object; interface IList; interface ICollection; interface IEnumerable; }; The default interface "ICAList" does

[python-win32] Accessing a COM-objects type name

2007-03-14 Thread Wikström Sven
Hi! What is the most appropriate way to access a COM-objects type name in Python like Vbscript's "TypeName" function? The concerned COM-objects are developed using .NET interop. I have previously solved it, with .NET 1.1 COM-objects, by calling the COM exposed derived "System.Object.GetType()"