我是在 C# 中使用 ReportViewer 的新手。我正在尝试显示我使用水晶报表制作的报表。
这是我的代码:
private void button1_Click(object sender, EventArgs e)
{
ReportDocument cryRpt = new ReportDocument();
cryRpt.Load("C:Users\\Document\\CrystalReport1.rpt");
crystalReportViewer1.ReportSource = cryRpt;
crystalReportViewer1.Refresh();
}
这是错误消息:
'Microsoft.Reporting.WinForms.ReportViewer' does not contain a definition for 'ReportSource' and no extension method 'ReportSource' accepting a first argument of type 'Microsoft.Reporting.WinForms.ReportViewer' could be found (are you missing a using directive or an assembly reference?)
我已经添加了参考Interop.CrystalActiveXReportViewerLib10
我该如何解决这个问题?