views:

37

answers:

0

How disable this message when I click on print button :The report you requested requires further information .

In ConfigureCrystalReports function I write this:

            string reportPath = Server.MapPath("NastavaPrikaz.rpt");

            ObjektniNastavaIzvjestaj = new ReportDocument();
            ObjektniNastavaIzvjestaj.Load(reportPath);
            ObjektniNastavaIzvjestaj.SetDataSource(nastava_izvjestaj);
            CrystalReportViewer1.DisplayGroupTree = false;
            CrystalReportViewer1.ReportSource = ObjektniNastavaIzvjestaj;