Add a new Entry to the directory, using the specified attributes and values to initialize it.
Set pLDAP = CreateObject("LDAPClient.3")
Call pLDAP.Connect("ldapserver")
Set pAttributes = CreateObject("LDAPClient.StringDictionary")
Call pAttributes("givenName").Add("Glenn")
Call pAttributes("sn").Add("Livet")
Call pAttributes("o").Add("airius.com")
Call pAttributes("uid").Add("glivet")
Call pAttributes("cn").Add("Glenn Livet")
Call pAttributes("objectClass").Add("InetOrgPerson")
Call pAttributes("email").Add("glivet@airius.com")
Call pAttributes("email").Add("glenn@airius.com")
Call pLDAP.AddNewEntry("uid=glivet, ou=People, o=airius.com", pAttributes)