以下是我的代码,它只使用一份报告。
rptbill = New CrystalReport1
rptexp = New ExpensesReport
rptmain = New MAINREPORT
rptbill.SetDataSource(dtincom)
rptexp.SetDataSource(dtexp)
frmCrystalReport.CrystalReportViewer1.ReportSource = rptmain
我想要的是我的rptmain
显示了我的子菜单rptbill
和rptexp
的字段。我不知道如何让它发挥作用。