4,820
社区成员
发帖
与我相关
我的任务
分享
this.reportViewer1.LocalReport.ReportPath = @"F:\dbTest\dbTest\Report1.rdlc";
this.USERTableAdapter.Fill(this.DataSet1.USER);//这是不含参数的方法
this.reportViewer1.RefreshReport();
这是button2的方法
this.reportViewer1.LocalReport.ReportPath = @"F:\dbTest\dbTest\Report3.rdlc";
this.LOGFTableAdapter.Fill(this.DataSet3.LOGF);
this.reportViewer1.RefreshReport();
看到网上说加“ this.reportViewer1.Reset();”这句加在哪里 加上后提示“The source of the report definition has not been specified”