Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Printing Crystal reports
Message
 
To
20/11/2002 13:39:34
Jim Rieck
Quicken Loans/Rock Financial/Title Sourc
Livonia, Michigan, United States
General information
Forum:
ASP.NET
Category:
Reporting
Miscellaneous
Thread ID:
00724855
Message ID:
00725479
Views:
16
Convert it to PDF. It is as simple as this:
Where oRpt is my Crystal Report


oRpt.ExportOptions.ExportDestinationType = CrystalDecisions.[Shared].ExportDestinationType.DiskFile
oRpt.ExportOptions.ExportFormatType = CrystalDecisions.[Shared].ExportFormatType.PortableDocFormat
'Here we are exporting the report to a .pdf format.
DiskOpts.DiskFileName = "c:\file"
oRpt.ExportOptions.DestinationOptions = DiskOpts
oRpt.Export()

Hope this helps!
Previous
Reply
Map
View

Click here to load this message in the networking platform