我使用active reports 6来显示报告。如果我们在报告中有很多页面,那么直到加载完所有页面,报告才会显示。
code :
ActiveReport ar = new ActiveReport();
ar.DataSource = lstDataContainingLargeRecords; // this list contains around 3000 records.
ar.Run();我想立即在报告中显示第一页,然后其他页面应该在后台加载。
请给我任何建议。
提前感谢
发布于 2014-07-14 12:37:12
您是否可以尝试使用Run(boolean)方法并将其syncDocument参数设置为true。您可以获得示例here的代码片段。
https://stackoverflow.com/questions/24697766
复制相似问题