
Export to PDF only from CRviewer (RDC 8.5 - VB 6.0)
Thanks George, that did the trick.
-SB
On Fri, 31 Aug 2001 16:05:29 -0700, "George Lissauer"
Quote:
>This should get you started:
>Dim Report As CRAXDRT.Report
>Dim crxExportOptions As CRAXDRT.ExportOptions
>crxExportOptions.FormatType =crEFTPortableDocFormat
>crxExportOptions.DestinationType = crEDTDiskFile
>crxExportOptions.DiskFileName = "C:\MyReport.pdf"
>...
>George
>GridLinx Software Programming Tools for VB Programmers
>http://www.gridlinx.com
>> I have a VB6 app that uses a RDC (8.5) report. I want to be able to
>> export the report to PDF only from the CRviewer. At present, it
>> exports to any of about 30 formats. Anyone know how to force it to
>> export to a Disk File (not an application, or MAPI) and in PDF format
>> only?
>> Thanks in advance for your help.