Re: [python-win32] COM Base Class and derived classes

2008-07-16 Thread Tibor Arpas
Hi, I did use the makepy utility through pythonwin GUI (although I'm not sure It had any effect) >>> cs = s.ms.Document.ComponentSet >>> cs[4].TypeName # attribute of type Component u'Folder' >>> cs[4].Children # attribute of type Folder Traceback (most recent call last): File "", line 1, in

Re: [python-win32] COM Base Class and derived classes

2008-07-15 Thread Mark Hammond
You probably want to look at using makepy and see if the behaviour changes. Note too that the "name" displayed by win32com may not correspond to the type of the object at all, particularly when makepy isn't used or for whatever reason the object doesn't support type information. Are you actual