public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { ReporteDeFactura rpt = new ReporteDeFactura(); rpt.Site = this.Site; return(rpt); }
private void FacturacrystalReportViewer_Load(object sender, EventArgs e) { ReporteDeFactura reporte = new ReporteDeFactura(); reporte.SetDataSource(lista); FacturacrystalReportViewer.ReportSource = reporte; FacturacrystalReportViewer.Refresh(); }