Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
MAPIMessage Problems Attaching
Message
From
24/05/1999 17:22:42
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
ActiveX controls in VFP
Title:
MAPIMessage Problems Attaching
Miscellaneous
Thread ID:
00222242
Message ID:
00222242
Views:
104
I am trying to attach a file to email, but I keep getting that error that the Attachment is not found even though it really is there. Here is my code:

WITH THISFORM
.oleSession.Signon
IF .oleSession.SessionID > 0
.oleMessage.SessionID = .oleSession.SessionID
ELSE
RETURN .F.
ENDIF

.oleMessage.Compose
.oleMessage.MsgSubject="Witness Needed"
.oleMessage.AttachmentIndex=.oleMessage.AttachmentCount+1
.oleMessage.AttachmentPathName="c:\form.pdf"
.oleMessage.AttachmentName=""
.oleMessage.RecipIndex = 0
.oleMessage.RecipDisplayName=RecipName
.oleMessage.ResolveName
.oleMessage.Send(0)

ENDWITH

Thanks for the help-Sara
Next
Reply
Map
View

Click here to load this message in the networking platform