is it possible to access walk through an object without having to iterate over it?
example:
This returns other comObjects. Is it possible to access those objects without the iterate? I tried x[0] but it appears not to be a list.
Grtz,
tonH
example:
Code:
import win32com.client
x = win32com.client.GetObject('LDAP://LDAP://DC=mydom,DC=com')
for y in x:
print y
This returns other comObjects. Is it possible to access those objects without the iterate? I tried x[0] but it appears not to be a list.
Grtz,
tonH