我正在使用C#和Crystal Reports来开发一个Web应用程序,我遇到的问题是该应用程序有很多报告,然后我需要知道可以做这样的事情:
private void showreport (Crystal_Report myReport)
{
myReportViewer.ReportSource = myReport
}
答案 0 :(得分:1)
我不确定您为什么要这样做,但我可以告诉您,只要您已准备好ReportDocument
private void showreport (ReportDocument myReport)
{
myReportViewer.ReportSource = myReport
}