Pages相当于是一个集合,所以使用Pages()访问是不正确的,应该以Document.Pages来访问:
正确写法:
- rptOne rpt1 = new rptOne();
- rpt1.Run();
- rptTwo rpt2 = new rptTwo();
- rpt2.Run();
- rpt1.Document.Pages.AddRange(new GrapeCity.ActiveReports.Document.Section.Page[]
- {rpt2.Document.Pages[0],rpt2.Document.Pages[1]} );
- viewer1.Document = rpt1.Document;
复制代码
|