Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Java Reporting With ReportViewBean

Status
Not open for further replies.

RobertMcNeill

Programmer
Dec 14, 2000
8
US
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
 
Hi !
I was trying to do with ReportViewer Bean.What is this ivjReportViewerBean ? Is this an extension of the normal
ReportViewerBean class in ReportViewer.

How did you do? I am using ver8.
I have created a class that extends ReportViewerBean and tried to call it through an applet.

Could you please give me some reply
 
ivjReportViewerBean is a ReportViewerBean object. Why won't the report display?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top