定义一下源:this.reportViewer1.LocalReport.ReportEmbeddedResource= "BasicRDLC.OrdersReport.rdlc";
或:this.reportViewer1.LocalReport.ReportPath= "BasicRDLC.OrdersReport.rdlc";
即要嵌入到winform窗体的报表的路径
但是如果只是这样就接着写
this.reportViewer1.LocalReport.DataSources.Add(new Microsoft.Reporting.WinForms.ReportDataSource("DataSet1_DataTable1", this.DataSet1.DataTable1));
this.reportViewer1.RefreshReport();
//DataSet1_DataTable1的意思:DataSet1为数据集名称,而DataTable1是数据集内的一个表
那运行的时候就不会出错,但是会提示:尚未指定报表定义的来源(说白了就是跟reportViewer控件和*.rdlc文件之间关联的处理模式出了错)
解决办法:
//设置this.reportViewer控件的处理模式
this.reportViewer1.ProcessingMode = ProcessingMode.Local;
或者是数据集名称没有写对。