c#report基本操作賦值

來源:互聯網
上載者:User

標籤:報表   code   repo   lis   oca   mod   指定   style   pat   

 //第一步:清除之前的資料  this.rptView.LocalReport.DataSources.Clear();  //第二步:指定報表路徑  this.rptView.LocalReport.ReportPath = "Report2.rdlc";  //第三步:構造新的DataTable  DataTable dt = new DataTable("DataTable1");  dt.Columns.Add("Name");  dt.Columns.Add("Score");  dt.Columns.Add("Id");  dt.Rows.Add(new object[] { "語文", 80, "Y0001" });  dt.Rows.Add(new object[] { "數學", 75, "S0001" });  dt.Rows.Add(new object[] { "英文", 96, "E0001" });  //名稱不能寫錯,和報表中的資料集名稱一致  ReportDataSource rdsItem = new ReportDataSource("DataSet1", dt);  //此處可以有多個資料來源  this.rptView.LocalReport.DataSources.Add(rdsItem);  //第四步:構造參數  List<ReportParameter> lstParameter = new List<ReportParameter>() {                new ReportParameter("Title",this.txtTitle.Text),                new ReportParameter("Id",this.txtId.Text),                 new ReportParameter("Name",this.txtName.Text),                new ReportParameter("Age",this.txtAge.Text),                new ReportParameter("Sex",this.txtSex.Text),                 new ReportParameter("Salary",this.txtSalary.Text),                new ReportParameter("Depart",this.txtDepart.Text)   };  this.rptView.LocalReport.SetParameters(lstParameter);  this.rptView.ZoomMode = ZoomMode.Percent;  this.rptView.ZoomPercent = 100;  //第五步:重新整理報表  this.rptView.RefreshReport();

 

c#report基本操作賦值

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.