Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Outlook redemption BUG?

Status
Not open for further replies.

wxperson

Programmer
Feb 5, 2004
14
US
I have done some limited testing on reading address books and sending email using the redemption.dll.

I have run into a problem on a Windows 2000 machine running Outlook 2000.

When I execute the code below… The contact folders are listed with a ZERO (0) count even though there are contact entries… and then after about 1 second the program abends with the following general error message… “ test.exe exe has generated error and will be closed by Windows. You will need to restart the program. An error log is being created”.

Has anyone heard of this before? BTW.. The redemption email send works just fine on this same PC.

Any help or information is appreciated

Thx,
George

***********************************

Dim j As Long, c As Long, i As Long
Dim rt() As String
Dim ra() As String

' types are SMTP and MAPIPDL
Dim rals As New Redemption.AddressLists
Dim raes As Redemption.AddressEntries
With rals
For i = 1 To .Count
Set raes = .Item(i).AddressEntries
ablist.AddItem rals.Item(i).Name & " - " & raes.Count
Next i
End With

Set rals = Nothing
Set raes = Nothing

 
See thread222-770309

Chip H.


If you want to get the best response to a question, please check out FAQ222-2244 first
 
Chip,

Other than not mentioning that the code is written in a VB6 SP5 environment.. I am not sure where I went astray with my question..


George
 
It's that you've now asked the same question in two different threads, and didn't reply to PaulBent's answer in the first thread.

Chip H.


If you want to get the best response to a question, please check out FAQ222-2244 first
 
These questions were totally different (other than having to do with Outlook redemption) and separated by 1 month.

One had to do with emailing attachements and I followed Paul's advice.. didn't think I had to reply to Paul and let him know I was doing so.

The other question had to do with a new error message that I just started to get last week. As it turns out, I just found the solution and am getting ready to post that now.

Thanks,

George
 
Solution.

BTW.. The solution to this question was a simple one. Extended Mapi (which Outlook redemption uses) does not work on Outlook installations that are installed with the IMO (internet mail only) option. Something I should have known :)

George
 
Glad you were able to solve your problem!

Chip H.


If you want to get the best response to a question, please check out FAQ222-2244 first
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top