Sending Crystal Reports to MAPI
Sending Crystal Reports to MAPI
API Declarations
Dim rpt as craxdrt.Report
Rate Sending Crystal Reports to MAPI
(1(1 Vote))
With rpt.ExportOptions
.DestinationType = crEDTEMailMAPI
.FormatType = crEFTPortableDocFormat
.MailToList = "steve"
.MailSubject = "Mail Subject"
.MailMessage = strMessage
End With
With rpt
.DisplayProgressDialog = False
.EnableParameterPrompting = False
.ParameterFields(1).AddCurrentValue "Any Old Value"
.Export False
End With
Sending Crystal Reports to MAPI Comments
No comments yet — be the first to post one!
Post a Comment