C# 活动报告中的性能问题6

C# 活动报告中的性能问题6,c#,report,activereports,C#,Report,Activereports,我正在使用活动报告6显示报告。 如果报告中有很多页面,则在加载所有页面之前,报告不会显示 code : ActiveReport ar = new ActiveReport(); ar.DataSource = lstDataContainingLargeRecords; // this list contains around 3000 records. ar.Run(); 我想在报告中立即显示第一页,然后在后台加载其他页面 请给出任何建议 提前感谢请尝试使用Run(boolean)方法并

我正在使用活动报告6显示报告。 如果报告中有很多页面,则在加载所有页面之前,报告不会显示

code :

ActiveReport ar = new ActiveReport();
ar.DataSource = lstDataContainingLargeRecords; // this list contains around 3000 records.
ar.Run();
我想在报告中立即显示第一页,然后在后台加载其他页面

请给出任何建议


提前感谢

请尝试使用Run(boolean)方法并将其syncDocument参数设置为true。您可以获得代码片段示例