public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { NCCreport rpt = new NCCreport(); rpt.Site = this.Site; return(rpt); }
private void btnPrint_Click(object sender, EventArgs e) { DataTable dt = getDataNCC(); NCCreport report = new NCCreport(); report.SetDataSource(dt); ReportForm reportForm = new ReportForm(); reportForm.rpt.ReportSource = report; reportForm.ShowDialog(); }