.Net 报表(rdlc) 学习

//引用
using Microsoft.Reporting.WinForms;
//新建报表参数
ReportParameter Rp_s_type = new ReportParameter("s_type", new string[] { "true" });

//传递报表参数语法

reportViewer_ywy_Old.LocalReport.SetParameters(new ReportParameter[] { Rp_s_type });
//刷新报表数据集 
reportViewer_ywy_Old.LocalReport.DataSources.Clear();//清空数据集
//参数一:报表本地数据集名称
//参数二:要填充的数据集的 table
reportViewer_ywy_Old.LocalReport.DataSources.Add(new Microsoft.Reporting.WinForms.ReportDataSource("DepartmentDataSet_Department_customer", DataSet_Items_Data.Tables[0]));
//刷新报表
reportViewer_ywy_Old.RefreshReport();

你可能感兴趣的:(.net)