Crystal reports save as dialog box

  • Thread starter Thread starter pnp
  • Start date Start date
P

pnp

How can I control the filetypes that a report, displayed in the crystal
report viewer, can be saved as ?

Thanks in advance,
peter
 
Hello,

Here are some VB Code samples for exporting.

CrReport.ExportToDisk(ExportFormatType.PortableDocFormat, PrintFileName)

CrReport.ExportToDisk(ExportFormatType.RichText, PrintFileName)

CrReport.ExportToDisk(ExportFormatType.WordForWindows, PrintFileName)

CrReport.ExportToDisk(ExportFormatType.HTML40, PrintFileName)



Hope this helps.



Chuck

How can I control the filetypes that a report, displayed in the crystal
report viewer, can be saved as ?

Thanks in advance,
peter
 
Back
Top