标签: c# report activereports
我正在使用活动报告6来显示报告。 如果我们在报告中有很多页面,那么在加载所有页面之前,报告才会显示。
code : ActiveReport ar = new ActiveReport(); ar.DataSource = lstDataContainingLargeRecords; // this list contains around 3000 records. ar.Run();
我想在报告中立即显示第一页,然后在后台加载其他页面。
请提出任何建议。
提前致谢
答案 0 :(得分:0)
您可以尝试使用Run(boolean)方法并将其syncDocument参数设置为true。您可以获取代码段示例here。