如何使用数据动态事件报告在一份报告中获得多个报告(具有不同的查询)

请您参考如下方法:

您还可以创建多个报表,对每个报表调用 Run(),然后使用 ActiveReport.Document.Pages 将它们合并在一起。保持逻辑完全分离并将文档合并在一起的好方法。

类似于:

ActiveReport report1 = new ActiveReport(); 
ActiveReport report2 = new ActiveReport(); 
report1.Run();     
report2.Run(); 
report.Document.Pages.AddRange(report2.Document.Pages); 
//do your exporting as normal 


评论关闭
IT序号网

微信公众号号:IT虾米 (左侧二维码扫一扫)欢迎添加!