AddressBookContact.LastName

From Xojo Documentation

Property (As AddressBookData )


aAddressBookContact.LastName = newAddressBookDataValue
or
AddressBookDataValue = aAddressBookContact.LastName

Supported for all project types and targets.

Last Name entry.

Sample Code

The following code adds the LastName field to a new contact.

Dim book As New AddressBook
Dim myContact As AddressBookContact
book = System.AddressBook
myContact = New AddressBookContact

myContact.FirstName = "Xena"
myContact.LastName = "Smith"

book.Add(myContact)

If book.HasUnsavedChanges Then
If book.Save Then
MsgBox("The AddressBook was saved!")
End If
Else
MsgBox("There were no unsaved changes!")
End If