我想打印我的报告,但会发生此错误。我必须在打印前定义哪些参数?我定义了PrintToPrinter函数的打印机名称和参数。 感谢。
答案 0 :(得分:3)
想知道你缺少什么参数?
For Each key As ParameterField In CrystalReport.ParameterFields
If key.HasCurrentValue = False Then
Debug.Print(key.Name.ToString)
End If
Next
答案 1 :(得分:1)
“缺少参数值”表示您没有为报告提供获取数据所需的所有参数。您必须为报表中的所有非可选参数提供值才能获取数据。