0

尝试在 CrystalReportViewer1 中打印 Crystal Reports RPT(MainReport) 时,我不知道如何设置子报表 (report1) 的参数。

我试过这个:

Report1.DataDefinition.ParameterFields("@code_machine").CurrentValues.AddValue(3)

但它不起作用,它显示了CrystalReports的输入框。

我也试过:

Report1.SetParameterValues("@code_machine", 3)

我究竟做错了什么?

4

1 回答 1

3

MainReport.SetParameterValue("@code_machine", 3, "report1")

Documentation reference: https://web.archive.org/web/20140321115705/http://msdn.microsoft.com/en-us/library/ms226106(v=vs.80).aspx

于 2013-09-06T00:16:05.533 回答