Hi Ludek,
As I mentioned, it is using the dot net SDK API to export, via the Export method to Export the PDF to the disk.
Like so:
| ' create the pdf file | |
| CType(l_objReportDocument.ExportOptions.ExportDestinationOptions, CrystalDecisions.Shared.DiskFileDestinationOptions).DiskFileName = strAppPDFFileName |
| Try | |
| l_objReportDocument.Export(l_objExportOptions) | |
| l_objReportDocument.Close() | |
| l_objReportDocument.Dispose() |
| Catch ex As Exception | |
| l_objReportDocument.Close() | |
| l_objReportDocument.Dispose() |
Although I don't believe it would matter, dot net is 4.0 and crystal SDK is 13.0.2, which match between all machines, and the CR Developer is 14.0.2.364 RTM.
Exporting to other formats is not something we do, the app always exports to PDF. It would be difficult for me to get access to a development server with that OS on it with a test app that tries a different export format. And I'm not sure of the value in that either.