-1
正在嘗試使用c#加載rpt文件。 我已經使用了下面的代碼。名稱'crystalReportViewer'在當前上下文中不存在
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'這個名字在當前上下文中不存在''。
任何建議???
在此先感謝!
'crystalReportViewer'聲明在哪裏? –