M
Marco Roberto
Hi everyone,
I have the following issue:
I have a worksheet that has some contacts. I just want to put these contacts
in a distribution list inside the Outlook.
I have the following code:
Dim app As Outlook.Application
Dim nspace As Outlook.NameSpace
Set app = New Outlook.Application
Set nspace = app.GetNamespace("MAPI")
Dim folder As Outlook.MAPIFolder
Set folder = nspace.folders("Mailbox - Gonçalves, Marco
Roberto").folders("Contacts").folders("teste")
Dim dlist As DistListItem
Set dlist = folder.Items("Dist")
What I have to do now?
PS: Those contacts are not inside my contact folder in Outlook, so the
ResolveAll method don't work.
Any Clue?
Tks
Marco
I have the following issue:
I have a worksheet that has some contacts. I just want to put these contacts
in a distribution list inside the Outlook.
I have the following code:
Dim app As Outlook.Application
Dim nspace As Outlook.NameSpace
Set app = New Outlook.Application
Set nspace = app.GetNamespace("MAPI")
Dim folder As Outlook.MAPIFolder
Set folder = nspace.folders("Mailbox - Gonçalves, Marco
Roberto").folders("Contacts").folders("teste")
Dim dlist As DistListItem
Set dlist = folder.Items("Dist")
What I have to do now?
PS: Those contacts are not inside my contact folder in Outlook, so the
ResolveAll method don't work.
Any Clue?
Tks
Marco