Unfortunately, I cannot locate an Inserttotextlist method.
I’m needing to insert a new alias in users’ person documents (shortname field). Ideally for us, the new alias would be 1st in the list vs. appended or last. What’s the best method to accomplish?
…
newAlias = CStr(DataArray(x,2))
Set item = naDoc.Getfirstitem(“ShortName”)
Call item.Appendtotextlist(newAlias)
Call naDoc.Save(True,False)
…