朋友们,我用c#开发了一个简单的应用程序,它有两个rdlc报告
我使用下面的代码将数据源绑定到报表查看器
this.reportViewer1.LocalReport.ReportPath = @"C:\Documents and Settings\Administrator\My Documents\Visual Studio 2008\Projects\reports\reports\Report1.rdlc";
reportViewer1.LocalReport.DataSources.Clear();
reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("customer", dt.Tables[0])) ;
this.reportViewer1.RefreshReport();
但是当报告生成时,它是空的报告没有数据显示,任何意见???
答案 0 :(得分:7)
当您通过向导在项目中添加.rdlc报告时,默认情况下,它将数据集名称设为'DataSet1'。现在,如果要动态绑定新数据集,则该数据集的名称必须为'DataSet1'。尝试更改它,并检查Table [0]是否包含 DataType 与原始dataType DataSet1
匹配的某些数据(行)。如果DataType不匹配,那么数据将不会出现在ReportViewer中。试试这个代码: -
string exeFolder = (Path.GetDirectoryName(Application.StartupPath)).Substring(0, (Path.GetDirectoryName(Application.StartupPath)).Length - 3);
string reportPath = Path.Combine(exeFolder, @"Reports\SessionReport.rdlc");
Microsoft.Reporting.WinForms.ReportDataSource rds = new Microsoft.Reporting.WinForms.ReportDataSource("DataSet1", yourDataSet.Tables[0]);
this.reportViewer1.LocalReport.DataSources.Add(rds);
this.reportViewer1.LocalReport.ReportPath = reportPath;
this.reportViewer1.RefreshReport();
有关.rdlc报告(核心逻辑)的更多详细信息,请参阅以下链接 How to create report (RDLC) without database?
答案 1 :(得分:2)
尝试下面,可能是数据源名称不正确的问题。
reportViewer1.LocalReport.DataSources.Add(new ReportDataSource(ds.DataSetName + "_" + ds.Tables[0].TableName, ds.Tables[0]));
您可以检查rdlc文件内容上的数据集名称。检查数据集的name属性是否与代码中给出的匹配。
答案 2 :(得分:0)
这是我使用对象绑定更新数据的方法: 在Form1.cs文件中:
private myClass m_products = new Products();
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.PaperBindingSource.DataSource = m_products.GetProducts();
this.PaperBindingSource.DataSource
很重要。