ActiveReports 代码控制报表连续打印

关键是要设置打印机的名称
ActiveReport3 rpt = new ActiveReport3();
//设置打印机
rpt.Document.Printer.PrinterSettings.PrinterName = "hp LaserJet 1300";
rpt.Run();
rpt.Document.Print(
false,false); 
原文地址:https://www.cnblogs.com/focus/p/1029827.html