2013-08-20 42 views
-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'這個名字在當前上下文中不存在''。

任何建議???

在此先感謝!

+1

'crystalReportViewer'聲明在哪裏? –

回答

0

「的CrystalReportViewer」名稱不在當前上下文中」存在

這意味着該變量的CrystalReportViewer不存在於這個範圍。檢查您已經聲明的名稱並在此處將其替換。

相關問題