public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { ReportCambio rpt = new ReportCambio(); rpt.Site = this.Site; return(rpt); }
private void ReporteCambio_Load(object sender, EventArgs e) { ReportCambio rpt = new ReportCambio(); rpt.SetParameterValue("@Fecha1", Fecha1.Date); rpt.SetParameterValue("@Fecha2", Fecha2.Date); crystalReportViewer1.ReportSource = rpt; }