public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { crGananciasG rpt = new crGananciasG(); rpt.Site = this.Site; return(rpt); }
public void cargarReporte() { MySqlDataAdapter adapter; fechaIni = dtp.Value.Year.ToString() + "/" + dtp.Value.Month.ToString() + "/" + dtp.Value.Day.ToString(); fechaFin = dtp2.Value.Year.ToString() + "/" + dtp2.Value.Month.ToString() + "/" + dtp2.Value.Day.ToString(); try { crearConsulta(); ds = new dataSet_inventarios(); adapter = new MySqlDataAdapter(query, con); adapter.Fill(ds, "GB"); switch (cb_tipo.SelectedIndex) { case 0: //Texto reportetxt = new crGananciasT(); reportetxt.SetDataSource(ds); crv.ReportSource = reportetxt; break; case 1: //Grafica reporteg = new crGananciasG(); reporteg.SetDataSource(ds); crv.ReportSource = reporteg; break; case 2: //Ambos reporte = new crGananciasA(); reporte.SetDataSource(ds); crv.ReportSource = reporte; break; } } catch (FormatException fex) { MessageBox.Show(fex.Message); } }
public void cargarReporte() { MySqlDataAdapter adapter; fechaIni = dtp.Value.Year.ToString() + "/" + dtp.Value.Month.ToString() + "/" + dtp.Value.Day.ToString(); fechaFin = dtp2.Value.Year.ToString() + "/" + dtp2.Value.Month.ToString() + "/" + dtp2.Value.Day.ToString(); try { crearConsulta(); ds = new dataSet_inventarios(); adapter = new MySqlDataAdapter(query, con); adapter.Fill(ds, "GB"); switch (cb_tipo.SelectedIndex) { case 0://Texto reportetxt = new crGananciasT(); reportetxt.SetDataSource(ds); crv.ReportSource = reportetxt; break; case 1://Grafica reporteg = new crGananciasG(); reporteg.SetDataSource(ds); crv.ReportSource = reporteg; break; case 2://Ambos reporte = new crGananciasA(); reporte.SetDataSource(ds); crv.ReportSource = reporte; break; } } catch(FormatException fex) { MessageBox.Show(fex.Message); } }
public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { crGananciasG rpt = new crGananciasG(); rpt.Site = this.Site; return rpt; }