Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想打印我的报告,但出现此错误。打印前我必须定义哪些参数?我定义了 PrintToPrinter 函数的打印机名称和参数。谢谢。
想知道您缺少哪些参数?
For Each key As ParameterField In CrystalReport.ParameterFields If key.HasCurrentValue = False Then Debug.Print(key.Name.ToString) End If Next
“缺少参数值”意味着您没有为报告提供获取数据所需的所有参数。您必须为报告中的所有非可选参数提供值,它才能获取数据。