В вашем вопросе не так много подробностей.
В любом случае, я нашел интересный пост на MSDN: http://social.msdn.microsoft.com/Forums/en/vscrystalreports/thread/a6e12469-2bf1-4c4f-b291-0cf06465b740.
Было предложено много решений, поскольку у нас больше нет информации от вас,Попробуйте их все.
- Временные файлы: удалите временные файлы из временной папки.И перезапустите систему.
Причина: это произошло при аварийном отключении системы.Crystal report содержит временные файлы отчетов в папке Temp, которые не были стерты.Из-за этого произошла ошибка отчета о загрузке.
- Реестр: измените PrintJobLimit с 75 на -1 дюйм;
HKEY_LOCAL_MACHINE \ SOFTWARE \ Crystal Decisions \ 10.2 \ ReportСервер приложений \ Сервер \ PrintJobLimit
Если вы еще не нашли решение для этого, вот последнее.Этот пример C # работает отлично.Вот фрагмент кода ниже.Он подчеркивает то, что не было очевидно из всего, что можно было прочитать в Интернете.
private ReportDocument CrystalRpt;
//Declaring these here and disposing in the Page_Unload event was the key. Then the only other issue was the
// limitations of Crystal 11 and simultaneous access to the rpt file. I make a temp copy of the file and use that in the
// method. Then I delete the temp file in the unload event.
private ReportDocument mySubRepDoc;
private ReportClass ReportObject;
private string tmpReportName;
protected void Page_UnLoad(object sender, EventArgs e)
{
Try
{
CrystalReportViewer1.Dispose();
CrystalReportViewer1 = null;
CrystalRpt.Close();
CrystalRpt.Dispose();
CrystalRpt = null;
mySubRepDoc.Close();
mySubRepDoc.Dispose();
mySubRepDoc = null;
ReportObject.Close();
ReportObject.Dispose();
ReportObject = null;
GC.Collect();
File.Delete(tmpReportName);
}
catch
{ ...Error Handler }
}
protected void Page_Load(object sender, EventArgs e)
{
CrystalRpt = new ReportDocument();
ConnectionInfo CrystalConn = new ConnectionInfo();
TableLogOnInfo tblLogonInfo = new TableLogOnInfo();
ReportObject = new ReportClass();
TableLogOnInfo CrystalLogonInfo = new TableLogOnInfo();
ParameterField CrystalParameter = new ParameterField();
ParameterFields CrystalParameters = new ParameterFields();
ParameterDiscreteValue CrystalParameterDV = new ParameterDiscreteValue();
TableLogOnInfo ConInfo = new TableLogOnInfo();
SubreportObject mySubReportObject;
mySubRepDoc = new ReportDocument();
//Report name is sent in querystring.
string ReportName = Request.QueryString["ReportName"];
// I did this because Crystal 11 only supports 3 simultaneous users accessing the report and
// we have up to 60 at any time. This copies the actual rpt file to a temp rpt file. The temp rpt
// file is used and then is deleted in the Page_Unload event
Random MyRandomNumber = new Random();
tmpReportName = ReportName.Replace(".rpt", "").Replace(".ltr", "") + MyRandomNumber.Next().ToString() +".rpt";
File.Copy(ReportName, tmpReportName, true);
CrystalRpt.Load(tmpReportName);