Ejemplo n.º 1
0
        public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
        {
            ClientesReport rpt = new ClientesReport();

            rpt.Site = this.Site;
            return(rpt);
        }
Ejemplo n.º 2
0
 private void Clientesbutton_Click(object sender, EventArgs e)
 {
     VisorClientesReporte vcrp = new VisorClientesReporte();
     ClientesReport crp = new ClientesReport();
     vcrp.VisorClientescrystalReportViewer.ReportSource = crp;
     vcrp.ShowDialog();
 }
Ejemplo n.º 3
0
        private void Clientesbutton_Click(object sender, EventArgs e)
        {
            VisorClientesReporte vcrp = new VisorClientesReporte();
            ClientesReport       crp  = new ClientesReport();

            vcrp.VisorClientescrystalReportViewer.ReportSource = crp;
            vcrp.ShowDialog();
        }
Ejemplo n.º 4
0
 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
 {
     ClientesReport rpt = new ClientesReport();
     rpt.Site = this.Site;
     return rpt;
 }