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

            rpt.Site = this.Site;
            return(rpt);
        }
Exemplo n.º 2
0
 private void print_krlb()
 {
     if (ds != null && ds.Tables[0].Rows.Count > 0)
     {
         Q_tt_krlb myreport = new Q_tt_krlb();
         if (!bool.Parse(isdisplay_fjjg))
         {
             for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
             {
                 ds.Tables[0].Rows[i]["sjfjjg"] = "xxxx" as object;
             }
         }
         //统计人数
         DataSet ds_temp0 = B_common.GetList(" SELECT count(*)  as Total_rs   FROM  View_tt_krlb ", " yydh='" + common_file.common_app.yydh + "' and  ddbh='" + ddbh + "'");
         Total_rs = ds_temp0.Tables[0].Rows[0]["Total_rs"].ToString();
         try
         {
             myreport.SetDataSource(ds.Tables[0]);
             crystalReportViewer1.ReportSource = myreport;
             if (bool.Parse(isdisplay_fjjg))
             {
                 isdisplay_fjjg = "是";
             }
             else
             {
                 isdisplay_fjjg = "否";
             }
             myreport.SetParameterValue("TotalRs", Total_rs);
             myreport.SetParameterValue("tt_name", tt_name);
             myreport.PrintToPrinter(1, true, 0, 0);
         }
         catch (Exception eee)
         {
             common_file.common_app.Message_box_show(common_file.common_app.message_title, eee.ToString());
         }
     }
 }