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

            rpt.Site = this.Site;
            return(rpt);
        }
Exemplo n.º 2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         rpt = new rpt_GCA_NF();
         rpt.SetDataSource((Session["ListReport"] as List<boRelNfFrete>));
         CrystalReportViewer1.ReportSource = rpt;
         GerarPDF();
     }
 }
Exemplo n.º 3
0
 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
 {
     rpt_GCA_NF rpt = new rpt_GCA_NF();
     rpt.Site = this.Site;
     return rpt;
 }