本帖最后由 Crystal.Li 于 2021-10-14 11:15 编辑
string file_name = Application.StartupPath + "\\Reports\\xp.rdlx";
GrapeCity.ActiveReports.PageReport pageReport = new GrapeCity.ActiveReports.PageReport(new System.IO.FileInfo(file_name));
GrapeCity.ActiveReports.Document.PageDocument pageDocument = new GrapeCity.ActiveReports.Document.PageDocument(pageReport);
//传入参数
pageReport.Report.ReportParameters[0].DefaultValue.Values.Add("123456");
pageDocument.Print(false, true, false);
需要判断操作完打印完成后,更新打印次数等
|