Print Page | Close Window

export options in web page

Printed From: Crystal Reports Book
Category: Crystal Reports 9 through 2020
Forum Name: Report Design
Forum Discription: The best way to design a report and problems you have encountered
URL: http://www.crystalreportsbook.com/forum/forum_posts.asp?TID=7554
Printed Date: 06 May 2024 at 5:22am


Topic: export options in web page
Posted By: colossal
Subject: export options in web page
Date Posted: 31 Aug 2009 at 2:18pm
i am using crystal reports 2008 and java .
i want to restrict download options (format types) when report appears on web page.
i have tried this code but it seems that it has no effect

ExportOptions oExportOptions = new ExportOptions();
oExportOptions.setExportFormatType(ReportExportFormat.PDF);
ReportExportControl oReportExportControl = new ReportExportControl();
oReportExportControl.setReportSource(reportSource);
oReportExportControl.setExportOptions(oExportOptions);
oReportExportControl.setExportAsAttachment(true);



Print Page | Close Window