DavidKnight
Programmer
Hi There..
I have a report which when run has over 600 pages and therefore takes awhile to produce/render. When the program launches the report a transparent frame appears until Crystal has completed the report..
How do I stop the displaying of the window until Crystal has completed processing the report?
My Environment is..
VS 2005/C#/web/SQL2005.
Here's the code I use to render the report..
Response.ContentType = "application/pdf";
crReportDocument.ExportToHttpResponse( CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, Response, false, "");
Thanks..
I have a report which when run has over 600 pages and therefore takes awhile to produce/render. When the program launches the report a transparent frame appears until Crystal has completed the report..
How do I stop the displaying of the window until Crystal has completed processing the report?
My Environment is..
VS 2005/C#/web/SQL2005.
Here's the code I use to render the report..
Response.ContentType = "application/pdf";
crReportDocument.ExportToHttpResponse( CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, Response, false, "");
Thanks..