IUrlsRemove Method |
Namespace: SuperOffice.COM.SuperOfficeDB
Remove
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
This will remove the first URL of the collection.
Dim objSO Set objSO = CreateObject("SuperOffice.Application") If not (objSO is nothing) Then objSO.CurrentContact.Urls.Remove (1) MsgBox "The first URL of the current contact is removed from the collection" else MsgBox "Unable to connect to database" end if Set objSO = Nothing