Q
Question Boy
Hello,
i am creating a new contact using vba
************
Set objFolder = myNameSpace.GetDefaultFolder(olFolderContacts)
Set objItems = objFolder.Items
With objItems.Add 'Create new Contact Entry
.FirstName = ""
.LastName = ""
.HomeAddressStreet = "
'...
.Save
***********
How do I determine the EntryID of the newly created contact at it creation
so I can store it?
Thank you,
QB
End With
i am creating a new contact using vba
************
Set objFolder = myNameSpace.GetDefaultFolder(olFolderContacts)
Set objItems = objFolder.Items
With objItems.Add 'Create new Contact Entry
.FirstName = ""
.LastName = ""
.HomeAddressStreet = "
'...
.Save
***********
How do I determine the EntryID of the newly created contact at it creation
so I can store it?
Thank you,
QB
End With