public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { ReporteProducto rpt = new ReporteProducto(); rpt.Site = this.Site; return(rpt); }
public FormReporteProducto() { InitializeComponent(); var _productoBL = new ProductosBL(); var bindingSource = new BindingSource(); bindingSource.DataSource = _productoBL.ObtenerProductos(); var reporte = new ReporteProducto(); reporte.SetDataSource(bindingSource); crystalReportViewer1.ReportSource = reporte; crystalReportViewer1.RefreshReport(); }