我在Crystal Report - Error Messsage中遇到问题:加载报表失败

问题描述:

我在Crystal Report - Error Messsage中遇到问题:加载报告失败。

I got the problem in Crystal Report- Error Messsage:Load report failed.

如何解决此问题?

如果您的报告运行了一段时间,然后崩溃,请确保您将其废弃.......

If your report is running for awhile and then falls over make sure you Dispose it.......

if(myReport != null)
{
    myReport .Close();
    myReport .Dispose();
}