N
NateG
I created a program that scans a text file containing e-mail addresses and
distribution lists which were originally created in Eudora. It then parses
them and adds them into Outlook to populate someone's individual and DL
contacts. We deployed it in February and everything seemed to be working
fine. It's only been used about 10 times altogether without any error
messages. Now suddenly, we are getting a bizarre error message that I have
been able to find a solution to. It occurs when adding a DL and only occurs
seemingly random. Here's the snippet it's occuring in:
Private Sub addList(ByVal listName As String, ByVal memberList() As String,
ByVal memberEmails() As String)
Dim oApp As Outlook.Application
Dim oNS As Outlook.NameSpace
Dim oDL As Outlook.DistListItem
Dim i As Integer
Dim oRecipient As Outlook.Recipient
oApp = CreateObject("Outlook.Application")
oNS = oApp.GetNamespace("MAPI")
oDL = oApp.CreateItem(Outlook.OlItemType.olDistributionListItem)
oDL.DLName = listName
oDL.Save()
'Populate the DL with individual e-mails.
For i = 0 To UBound(memberEmails)
'MessageBox.Show(memberList(i) + " " + memberEmails(i))
If memberList(i) = Nothing Then
Exit For
End If
oRecipient = oNS.CreateRecipient(memberList(i) & "<" &
memberEmails(i) & ">")
**********************************
'Here is where I'm getting the error message when it tries to do the
oRecipient.Resolve() call. It give the following error message on the
debugger:
COMException unhandled by the user
The remote procedure call failed. (Exception from HRESULT: 0x800706BE)
**********************************
oRecipient.Resolve()
oDL.AddMember(oRecipient)
oDL.Save()
Next
oDL.Save()
'Clean up
oApp = Nothing
oNS = Nothing
oDL = Nothing
oRecipient = Nothing
End Sub
Any thoughts?
distribution lists which were originally created in Eudora. It then parses
them and adds them into Outlook to populate someone's individual and DL
contacts. We deployed it in February and everything seemed to be working
fine. It's only been used about 10 times altogether without any error
messages. Now suddenly, we are getting a bizarre error message that I have
been able to find a solution to. It occurs when adding a DL and only occurs
seemingly random. Here's the snippet it's occuring in:
Private Sub addList(ByVal listName As String, ByVal memberList() As String,
ByVal memberEmails() As String)
Dim oApp As Outlook.Application
Dim oNS As Outlook.NameSpace
Dim oDL As Outlook.DistListItem
Dim i As Integer
Dim oRecipient As Outlook.Recipient
oApp = CreateObject("Outlook.Application")
oNS = oApp.GetNamespace("MAPI")
oDL = oApp.CreateItem(Outlook.OlItemType.olDistributionListItem)
oDL.DLName = listName
oDL.Save()
'Populate the DL with individual e-mails.
For i = 0 To UBound(memberEmails)
'MessageBox.Show(memberList(i) + " " + memberEmails(i))
If memberList(i) = Nothing Then
Exit For
End If
oRecipient = oNS.CreateRecipient(memberList(i) & "<" &
memberEmails(i) & ">")
**********************************
'Here is where I'm getting the error message when it tries to do the
oRecipient.Resolve() call. It give the following error message on the
debugger:
COMException unhandled by the user
The remote procedure call failed. (Exception from HRESULT: 0x800706BE)
**********************************
oRecipient.Resolve()
oDL.AddMember(oRecipient)
oDL.Save()
Next
oDL.Save()
'Clean up
oApp = Nothing
oNS = Nothing
oDL = Nothing
oRecipient = Nothing
End Sub
Any thoughts?