Can't get Attachments with Redemption - error

Joined
Sep 11, 2007
Messages
3
Reaction score
0
Hi -
I am trying Redemption for the first time, and was trying to access Attachments.

When I try the code below (VB6) I get a popup error:
Runtime error "-2147418113 (8000ffff)':
You are not authorized to use this object. Set AuthKey property first

Code:
Private oApp As Outlook.Application
Private oMess As Outlook.MailItem
 
Private Sub Command2_Click()
Dim rMess As Object
	Set oApp = New Outlook.Application
	Set oMess = oApp.CreateItemFromTemplate(msgfile)
	Set rMess = New Redemption.SafeMailItem
	rMess.Item = oMess
	rtf.Text = rMess.Body
 
Dim rAtt As Redemption.Attachment
	For Each rAtt In rMess.Attachments 'ERROR OCCURS HERE
		With rAtt
			List1.AddItem .DisplayName
		End With
	Next rAtt
End Sub

I am not using AuthKey anywhere in my code - and when I try, I get basically the same error message.

Is this message due to the fact that I am using the Developer version ?

Thanks
 
Joined
Sep 11, 2007
Messages
3
Reaction score
0
Never mind - It turns out I had Redemption reg keys I wasn't aware of - so i deleted them.

I think that some other program I use also uses Redemption....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top