Re: Export to PDF without preview
ActiveReports 2.0 (Visual Basic 6.0) Support
Export to PDF without preview
02-25-2010, 11:54 PM
Does Active Reports 2.0 with SP1 allow us to export to a PDF and without preview?
Thanks!
Re: Export to PDF without preview
02-26-2010, 5:09 AM
Hello,
You could export the report to PDF even without previewing the same.
Regards,
Prantik
Re: Export to PDF without preview
03-02-2010, 7:32 AM
Hello,
You could use code as the following to export the report to PDF without previewing the same.
Dim pdfexport As New ARExportPDF
Dim rpt As New ActiveReport1
pdfexport.FileName = "Filenamewithlocation.pdf"
rpt.Run
pdfexport.Export rpt.Pages
Regards,
Prantik