I'm using CE9. I have a web app that needs to pass parameter values to the report at run time.
Using an example from CrystalDecisions.com I can do this using a series of code that results in:
Set Viewer = CreateObject("CrystalReports.CrystalReportInteractiveViewer")
With Viewer
.reportsource = report document
.parameterfields = fields
end With
Viewer.ProcessHTTPRequest Request, Response, Session
My boss wants me to use the ActiveX viewer. Is there a way to do this with ActiveX?
Currently I use a line like this to call the ActiveX viewer
...
Response.Redirect("viewrpt.cwr?id="+ID+"....)
My question is where would I commit the parameters when I use this type of code?
HELP!!
Using an example from CrystalDecisions.com I can do this using a series of code that results in:
Set Viewer = CreateObject("CrystalReports.CrystalReportInteractiveViewer")
With Viewer
.reportsource = report document
.parameterfields = fields
end With
Viewer.ProcessHTTPRequest Request, Response, Session
My boss wants me to use the ActiveX viewer. Is there a way to do this with ActiveX?
Currently I use a line like this to call the ActiveX viewer
...
Response.Redirect("viewrpt.cwr?id="+ID+"....)
My question is where would I commit the parameters when I use this type of code?
HELP!!