Hello,
I'm getting the error message:
Error Occurred Exporting Report: -2147190548 Missing or out-of-date export DLL
It's the first time we use CR8.5 Developer. We don't have/had previous installation of CR. We can see the report, but we can't export. I'm programming in VBScript on ASP pages.
This is my code:
In other viewers we can export.
Please help.
Ruud Breukers
I'm getting the error message:
Error Occurred Exporting Report: -2147190548 Missing or out-of-date export DLL
It's the first time we use CR8.5 Developer. We don't have/had previous installation of CR. We can see the report, but we can't export. I'm programming in VBScript on ASP pages.
This is my code:
Code:
filetype = Request.Form("exp")
filename = session("rapport") & "." & cstr(filetype)
Set ExportOptions = Session("oRpt").ExportOptions
Session("oRpt").DisplayProgressDialog = FALSE
exportfilename = "d:\exports\" & cstr(filename)
Select Case cstr(filetype)
case "doc" ExportType = 14
case "xls" ExportType = 27
case "rtf" ExportType = 4
case "pdf" ExportType = 31
case "rpt" ExportType = 1
End Select
ExportOptions.DestinationType = 1
ExportOptions.DiskFileName = exportfilename
ExportOptions.FormatType = cint(ExportType)
On Error Resume Next
Session("oRpt").Export False
If Err.Number <> 0 Then
Response.Write "Error Occurred Exporting Report: " & Err.Number & " " & Err.Description
Set Session("oRpt") = nothing
Set Session("oApp") = nothing
Session.Abandon
Response.End
Else
If IsObject(session("oPageEngine")) Then
set session("oPageEngine") = nothing
End If
set session("oPageEngine") = session("oRpt").PageEngine
End If
In other viewers we can export.
Please help.
Ruud Breukers