
Exporting Crystal Report 85 to PDF from Visual Studio 6.0
I'm trying to export a Crystal Report 85 from Visual Studion6.0 SP5
I can display the Report correctly. If I use the Export (Envelope) funtion
from the report itself. Everything works fine.
If I use the following code
Report1.PrintFileType = crEFTPortableDocFormat
Report1.PrintFileName = "C:\dispo" & ".pdf"
Report1.Destination = crptToFile
Report1.Action = 1
Then I receive error:
RUNTIME 20692
Invalid Export DLL or EXPORT FORMAT
Some more information:
crEFTHTML40 does not work. --> HTML V40
crEFTHTML32Standard works fine. --> HTML V32
The ceEFTPortableDocFormat comes with the CRAXDRT.dll
Who can provide a solution?