Insert a new attribute into the directory using the contents of a file as the value.
AddFromFile(AttributeName As String, Filename As String) As
LDAPAttributeSet pLDAP = CreateObject("LDAPClient.3")
Call pLDAP.Connect("ldapserver")
Set pEntries = pLDAP.Search("o=airius.com", "uid=bjensen")
' Add Bab's image to her entry
Call pEntries(0).Attributes.AddFromFile("jpegPhoto", "c:\BabsImage.jpg")