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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Crystal report with CRViewer

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I am using Crystal report 8.5 using CRViewer ActiveX in ASP. I could open that report but it is saying Object doesn't support this property or method.
Can u pls help me. Here is the code.
function window_onload() {
var webBroker;
var websource;
webBroker = new ActiveXObject("WebReportBroker.WebReportBroker");
websource = new ActiveXObject("webreportsource.webreportsource");
websource.reportsource = webBroker;
websource.url="../clientmast.rpt";
websource.promptonrefresh = true;
CRViewer1.reportsource = websource;
CRViewer1.ViewReport;
}
Thanks,
LJS
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top