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

            rpt.Site = this.Site;
            return(rpt);
        }
Exemplo n.º 2
0
        private void crystalReportViewer1_Load(object sender, EventArgs e)
        {
            Factura3 rep = new Factura3();

            rep.SetParameterValue("@IDVENTA", dato);
            crystalReportViewer1.ReportSource = rep;
        }