|
-
Mar 9th, 2004, 07:23 AM
#1
Thread Starter
Lively Member
emailing a (view of a) crystal report
Hi all,
I have a web (asp) system which generates many crystal reports. One of these crystal reports is a form which is used to submit claims. We need to e-mail this form to various organisations.
Obviously we cant just email the crystal report as an attachement. Any ideas of the best way I could go about in emailing the reports with their data and format in a file format that is accessible by the masses?
Thanks
You are living a pacifist dream, and if you dreaming it means you sleeping and you should damn well wake up!
-
Mar 9th, 2004, 06:23 PM
#2
Fanatic Member
Exported to PDF is quite versatile.
-
Mar 10th, 2004, 05:21 AM
#3
Thread Starter
Lively Member
you mean you can export a crystal report to PDF? Do you need an adobe writer for this?
You are living a pacifist dream, and if you dreaming it means you sleeping and you should damn well wake up!
-
Mar 10th, 2004, 06:18 AM
#4
Fanatic Member
no, the object to export the report comes complete with crystal
-
Mar 16th, 2004, 03:16 AM
#5
Thread Starter
Lively Member
There seems to be some disagreement over whether Crystal Reports 8 can do this.
You are living a pacifist dream, and if you dreaming it means you sleeping and you should damn well wake up!
-
Mar 16th, 2004, 04:20 AM
#6
Fanatic Member
This is for CR 8.5
With you report open
File->Print->Export
In the format dropdown select Acrobat format (PDF)
In the destination dropdown save it to disk.
You will be prompted for a location.
Now if the exporting needs to be done at run time, dynamically.
This is a VB example.
Private sub cmdExportPDF_Click()
dim ex as cRAXDRT.ExportOptions
set ex = CrystalReport1.ExportOptions
ex.DestinationType = crEDTDiskFile
ex.DiskFileName = "c:\aExport.pdf"
ex.FormatType = crEFTPortableDocForomat
ex.PDFExportAllPages = true
CrystalReport1.Export (false)
Exit Sub
Sorry I don't have an ASP example, hope this helps.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|