尝试使用c#加载rpt文件。 我使用了以下代码。
using System;
using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions.Shared;
namespace Report
{
public partial class Report : Document
{
public void ReportLoad()
{
ReportDocument reportDocument = new ReportDocument();
string filePath = "D:\\crosstabReport.rpt";
reportDocument.Load(filePath);
crystalReportViewer.ReportSource = reportDocument;
}
但我得到的错误如''名称'crystalReportViewer'在当前上下文中不存在'。
任何建议???
提前致谢!!!!
答案 0 :(得分:0)
当前上下文'
中不存在名称'crystalReportViewer'
这意味着变量crystalReportViewer不在此范围内。检查您声明的名称并在此处替换它。