I have a vba function which looks up entries via ldap.
in breif i have it set up:
Code: Select all
Set rs = conn.Execute(ldapStr)
Set FoundObject = GetObject(rs.Fields(0))
Code: Select all
aResult(0) = FoundObject.sn
aResult(1) = FoundObject.co
aResult(2) = FoundObject.title
i thought i would be clever and use checkboxes with names chk_sn, chk_co, chk_title etc and then use a loop to grab the properties of the found object depending on which checkboxes were ticked.
thing is i realise now i am tryin gto append a string value to the found object 's property. eg:
Code: Select all
aResult(i) = FoundObject.<<string>>
i dont think there is a way to do this is there? Does this make sense?