Link to home
Start Free TrialLog in
Avatar of kv_gouda
kv_gouda

asked on

fax/email a crystal report

hello experts,
I want to incorporate faxing of the cystal report file to the given fax number
also I wish tosend the report as attachment to a mail id.

A goodchallenge for experts

Please Help me
Avatar of corvanderlinden
corvanderlinden

This is all standard functionality of the Crystal Viewer
ASKER CERTIFIED SOLUTION
Avatar of sridhar_PJ
sridhar_PJ

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
for the email part:

With myRpt.ExportOptions
                            .DestinationType = crEDTEMailMAPI
                            .MailToList = "<email>"
                            .MailCcList = "<ccs>"
                            .MailSubject = "<subject>"
                            .FormatType = crEFTHTML32Standard
                            .HTMLFileName = App.Path & "\Temp.html"
                         End With
                       
                         myRpt.Export False

where myRpt is a CRAXDRT.Report
Avatar of Mike McCracken
Do you want to do this directly from VB or from the CR preview screen?

From the CR preview screen you just need to have the appropriate export dlls loaded and then click on the envelope icon to export the report.  Choose the appropriate method and export the report.

mlmcc