Change the Entry's parent dn, thereby moving it to another directory container.
Move(NewParentDn As String)
Set pLDAP = CreateObject("LDAPClient.3")
Call pLDAP.Connect("ldapserver")
' Brad gets a promotion
Set pEntries = pLDAP.Search("o=airius.com", "(&(givenName=Brad)(sn=Walker))")
Call pEntries(0).Move("ou=Executive, o=polonia-online.com")