微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

水晶报表“加载报表失败”

如何解决水晶报表“加载报表失败”

我的问题似乎是一个重复的问题,但这确实给我带来了困难。 我已经在C#版本16.7.6中开发了一个应用程序,我的CR报告是版本11。 问题是我的应用程序在计算机(也是开发计算机)中运行得像黄油一样,它也打开了CR,但是在其他任何计算机上,我的程序在加载CR时都抛出错误“加载报告失败”。下面是我的代码供参考:

private void LoadReport()
{
    ReportDocument cryrpt = new ReportDocument();
    try
    {
        TablelogonInfos crtablelogoninfos = new TablelogonInfos();
        TablelogonInfo crtablelogoninfo = new TablelogonInfo();
        ConnectionInfo crConnectionInfo = new ConnectionInfo();
        Tables CrTables;

        crConnectionInfo.ServerName = "*****";
        crConnectionInfo.DatabaseName = "*****";
        crConnectionInfo.UserID = "*****";
        crConnectionInfo.Password = "*****";

        MessageBox.Show(Application.StartupPath + @"\Prescription.rpt ");
        cryrpt.Load(Application.StartupPath + @"\Prescription.rpt");

        CrTables = cryrpt.Database.Tables;
        foreach (CrystalDecisions.CrystalReports.Engine.Table CrTable in CrTables)
        {
            crtablelogoninfo = CrTable.logonInfo;
            crtablelogoninfo.ConnectionInfo = crConnectionInfo;
            CrTable.ApplylogonInfo(crtablelogoninfo);
        }

        ParameterFieldDeFinitions pfds;
        ParameterFieldDeFinition pfd;
        ParameterValues pv = new ParameterValues();
        ParameterdiscreteValue pdv = new ParameterdiscreteValue
        {
            Value = Form1.PrescriptionNumberForReport    //captures the parameter value
        };
        pfds = cryrpt.DataDeFinition.ParameterFields;
        pfd = pfds["FROMPRESNO"];
        pv = pfd.CurrentValues;
        pv.Clear();
        pv.Add(pdv);
        pfd.ApplyCurrentValues(pv);

        crystalReportViewer1.ReportSource = cryrpt;
        crystalReportViewer1.Refresh();
    }
    catch (Exception ex)
    {
        MessageBox.Show("Error Encountered: " + ex.Message,"Search Prescription",MessageBoxButtons.OK,MessageBoxIcon.Error);
        if (cryrpt != null)
        {
            cryrpt.Close();
        }
    }
}

我将很高兴收到任何有关上述问题的建议或答复。

这是详细的错误

error image

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。