Sign in | Join
Last post 05-13-2008 6:04 AM by jagan.unique. 2 replies.
Sort Posts: Oldest to newest Newest to oldest
Hi,
In crystal Reports, shall we need to write the code to export report to PDF format? In SQLServer reporting services, there is no need to write code to export to PDF.
Thanks
Nothing to do except change the printmode to PDF or just use the export button which includes PDF in addition to a few other types.
check the below code..
Private CCgenReport As ReportDocument
CCgenReport = New ReportDocument() other code goes here...
CCgenReport.ExportToHttpResponse(ExportFormatType.PortableDocFormat, Response, False, "") 'this will exports to pdf format