活动报告始终发送到默认打印机

时间:2013-05-08 10:21:29

标签: printing activereports

我想从活动报告打印到网络打印机,但它始终打印到默认打印机而不会​​抛出错误。 一旦我尝试使用.net printdocument库进行打印,它就会打印到指定的打印机。

我不知道为什么在使用activereports时打印到默认打印机。

2 个答案:

答案 0 :(得分:2)

设置Printer对象的PrinterName property。如下所示:

viewer.Document.Printer.PrinterName = "TheNetworkPrinterName";
viewer.Print();

PrinterName属性的值应该是windows中的确切名称。要获取给定系统上有效打印机名称的列表,可以使用PrinterSettings.InstalledPrinters枚举打印机列表。枚举可用打印机的示例位于the MSDN documentation here

如果您尝试某些内容并发现它无效,请向我们提供更详细的信息,我们会尽力为您提供帮助。

答案 1 :(得分:0)

更改最终用户设计器中的打印机。

Grapecityteam回答:

对于SectionReport,您可以在设置Designer的LayoutChanged事件中注入脚本以在加载报表时更改默认打印机,如下所示:

private void OnLayoutChanged(object sender, LayoutChangedArgs e)
        {
            if (e.Type == LayoutChangeType.ReportLoad || e.Type == LayoutChangeType.ReportClear)
            {
                reportToolbox.Reorder(reportDesigner);
                reportToolbox.EnsureCategories();
                reportToolbox.Refresh();
                RefreshExportEnabled();
                CreateReportExplorer();
                splitContainerMiddle.Panel2Collapsed = reportDesigner.ReportType == DesignerReportType.Section;

                if (reportDesigner.ReportType == DesignerReportType.Section)
                {
                    string script = string.Empty;
                    script += "public void ActiveReport_ReportStart()";
                    script += "{";
                    script += "rpt.Document.Printer.PrinterSettings.PrinterName = System.Drawing.Printing.PrinterSettings.InstalledPrinters[3];";
                    script += "}";
                    (reportDesigner.Report as SectionReport).ScriptLanguage = "C#";
                    (reportDesigner.Report as SectionReport).Script = script;
                }

            }

感谢Grapecity Sales and Support