RobertMcNeill
Programmer
I am using crystals ReportViewerBean in a java applet. When I run the html page, the report viewer comes up but the report never displays. I am using crystal 7. The following is the code snippet where I set the report name.
#######################
ivjReportViewerBean.start();
userid = this.getParameter("Userid"
;
password = this.getParameter("Password"
;
String rptparam;
rptparam = "user0="+userid+"&password0="+password;
try{
ivjReportViewerBean.setReportParameter(rptparam);
ivjReportViewerBean.setReportName "cdlspp.rpt"
;
}catch(java.beans.PropertyVetoException pve){}
##################
What am I doing wrong? How can I get the report to display?
Thanks
#######################
ivjReportViewerBean.start();
userid = this.getParameter("Userid"
password = this.getParameter("Password"
String rptparam;
rptparam = "user0="+userid+"&password0="+password;
try{
ivjReportViewerBean.setReportParameter(rptparam);
ivjReportViewerBean.setReportName "cdlspp.rpt"
}catch(java.beans.PropertyVetoException pve){}
##################
What am I doing wrong? How can I get the report to display?
Thanks