存在创建接收任何Crystal Report的功能的方法,C#

时间:2015-07-09 16:34:04

标签: c# crystal-reports

我正在使用C#和Crystal Reports来开发一个Web应用程序,我遇到的问题是该应用程序有很多报告,然后我需要知道可以做这样的事情:

private void showreport (Crystal_Report myReport)
{
   myReportViewer.ReportSource = myReport
}

1 个答案:

答案 0 :(得分:1)

我不确定您为什么要这样做,但我可以告诉您,只要您已准备好ReportDocument

,这就会编译并运作
private void showreport (ReportDocument myReport)
{
   myReportViewer.ReportSource = myReport
}