Hi all,
I have 2 SSRS reports what I want to display one after the other in a reportviewer. To explain in more detail, I want reportviewer1 to load a report while in the background reportviewer2 is loading the second report (while hidden) and then after 30 seconds show the updated report and hide the first.
I have something like....
Rinse and repeat.
Any suggestions would be great
/Nice
I have 2 SSRS reports what I want to display one after the other in a reportviewer. To explain in more detail, I want reportviewer1 to load a report while in the background reportviewer2 is loading the second report (while hidden) and then after 30 seconds show the updated report and hide the first.
I have something like....
Code:
reportviewer1.visible = true 'report1 is showing
reportviewer2.visible = false 'report2 is hidden
ReportViewer2.ServerReport.ReportPath = "/Caseflow Reports/REPORTNAME" 'the data is being generated while hidden
Wait 30 seconds 'this is the bit i cant figure out
reportviewer1.visible = false 'report2 is showing
reportviewer2.visible = true 'report1 is hidden
ReportViewer1.ServerReport.ReportPath = "/Caseflow Reports/REPORTNAME" 'the data is being generated while hidden
Rinse and repeat.
Any suggestions would be great
/Nice