(NT 4.0 Server, SQL 2000 database, Crystal 8.5)
I have an ASP web site that is using a class to create the Crystal Report object successfully.
When I attempt to open the report:
WHERE
sPath & sReportLocation =location of the report (correct)
rptCrystalReport = name of report to open (correct)
I receive the following error:
Crystal Reports ActiveX Designer error '80043ac6'
Access denied.
The permissions on the folder where the report is saved (sPath & sReportLocation from code above) are set to Full Control for Everyone.
Any suggestions on why I might be getting this error message?
Thanks in advance for any help.
I have an ASP web site that is using a class to create the Crystal Report object successfully.
When I attempt to open the report:
Code:
Set oRpt = oApp.OpenReport(sPath & sReportLocation & "\" & rptCrystalReport)
WHERE
sPath & sReportLocation =location of the report (correct)
rptCrystalReport = name of report to open (correct)
I receive the following error:
Crystal Reports ActiveX Designer error '80043ac6'
Access denied.
The permissions on the folder where the report is saved (sPath & sReportLocation from code above) are set to Full Control for Everyone.
Any suggestions on why I might be getting this error message?
Thanks in advance for any help.