Append Description Field -
10-25-2004
, 10:29 PM
All of our Descriptions fields have a five digit number. I need to add the
words "Passed 1. 2005" to the right of the five digit value without
overwriting it. This is what I have so far. It will write the to the
"Description" only if it is empty.
Const ADS_PROPERTY_APPEND = 3
Set objUser = GetObject _
("LDAP://cn=quiz taker2,ou=Users,ou=Detroit,dc=testnet,dc=com")
objUser.PutEx ADS_PROPERTY_APPEND, _
"Description", Array("PASSED 1.2005")
objUser.SetInfo
--
Saludos,
Ambos |