主题:C# RDLC报表调用储存过程问题!
请问一个关于rdlc报表问题!我调用储存过程绑定数据到报表上,显示不了数据,但是在datagridview就正常!什么原因呢?
this.rpvFMonthReport.LocalReport.ReportEmbeddedResource = "StatisticalSystem.rpFMonthReport.rdlc";
this.rpvFMonthReport.LocalReport.DataSources.Add(datasource);
this.rpvFMonthReport.LocalReport.Refresh();
this.dataGridView1.DataSource = dt;
this.dataGridView1.Refresh();
这些是我绑定数据到报表文件和dataGridView1上的代码!
this.rpvFMonthReport.LocalReport.ReportEmbeddedResource = "StatisticalSystem.rpFMonthReport.rdlc";
this.rpvFMonthReport.LocalReport.DataSources.Add(datasource);
this.rpvFMonthReport.LocalReport.Refresh();
this.dataGridView1.DataSource = dt;
this.dataGridView1.Refresh();
这些是我绑定数据到报表文件和dataGridView1上的代码!