"The table could not found" and " the report need more information"
-
i have 2 crystal reports both of them have different datasource.These reports were working tommorrow but now when i run reports it show errors one report shows**"the table could not found"** and another report shows "the report need more information". i rebind my reports with database but error is still there i googled my problem but no solution works.plz help if u know its solutions
-
i have 2 crystal reports both of them have different datasource.These reports were working tommorrow but now when i run reports it show errors one report shows**"the table could not found"** and another report shows "the report need more information". i rebind my reports with database but error is still there i googled my problem but no solution works.plz help if u know its solutions
haleemasher wrote:
.These reports were working tommorrow but now when i run reports it show errors one report shows"the table could not found" and another report shows "the report need more information". i rebind my reports with database but error is still there i googled my problem but no solution works.plz help if u know its solutions
They WERE working TOMORROW ? Perhaps if you posted some code ? What has changed since 'tomorrow' ? Something must have changed if it worked before and now doesn't. Have you confirmed your datasource is working ?
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
haleemasher wrote:
.These reports were working tommorrow but now when i run reports it show errors one report shows"the table could not found" and another report shows "the report need more information". i rebind my reports with database but error is still there i googled my problem but no solution works.plz help if u know its solutions
They WERE working TOMORROW ? Perhaps if you posted some code ? What has changed since 'tomorrow' ? Something must have changed if it worked before and now doesn't. Have you confirmed your datasource is working ?
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
thnx 4 reply.my reports not contain so much code it simply bind a record with a button.
protected void Button1_Click(object sender, EventArgs e)
{
ReportDocument cryRpt = new ReportDocument();
cryRpt.Load("C:\\WebSite1\\CrystalReport2.rpt");
CrystalReportViewer1.ReportSource = cryRpt;
CrystalReportViewer1.RefreshReport();}