问题描述
我的问题似乎是一个重复的问题,但这确实给我带来了困难。 我已经在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();
}
}
}
我将很高兴收到任何有关上述问题的建议或答复。
这是详细的错误:
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)