Is there any way (through code) to show the Export Dialog box other than clicking on the export button inside of the CRViewer control? Currently using CR9.
Printable View
Is there any way (through code) to show the Export Dialog box other than clicking on the export button inside of the CRViewer control? Currently using CR9.
Never done and see before. Why you want to do this, Make your own control for exporting the data.
You can show the Export dialog by calling the Export method of the Report object.
Code:Dim oReport As CRAXDRT.Report
'...code to open report, login db etc.
Call oReport.Export(True)