如何在c#中为水晶报表添加文本框值

时间:2014-11-08 09:09:16

标签: c#

首先,我需要说我已经看过以前的问题和答案。但他们想为我工作。我知道这是我的错。但无法找到任何解决方案。 我是水晶报道的新手。我已经创建了一个水晶报告,并尝试在我的表单中添加值..

这是我的代码

 private void Button6_Click(object sender, EventArgs e)
    {
        string reportPath = "~\\WindowsFormsApplication10\\fullServiceReport.rpt";

        ReportDocument fullServiceRpt = new ReportDocument();
        fullServiceRpt.Load(reportPath);
        fullServiceRpt.SetParameterValue("@cusName", TextBoxCusName.Text);
    }

它会像这样发生异常 enter image description here

0 个答案:

没有答案