如何静默打印RDLC

时间:2014-05-05 18:19:35

标签: c# winforms printing rdlc

我正在开发一个Winforms应用程序,遵循此tutorial来生成XML文件的报告。现在我需要在特定类型的打印机'BIXOLON'和特定类型的纸张上打印它,我需要包含此信息然后执行打印。

我尝试从msdn复制并粘贴此代码,但我收到了错误消息:

  

本地报告处理期间发生错误。

在那一行

    private void Export(LocalReport report)
    {
        string deviceInfo =
          @"<DeviceInfo>
            <OutputFormat>EMF</OutputFormat>
            <PageWidth>8.5in</PageWidth>
            <PageHeight>11in</PageHeight>
            <MarginTop>0</MarginTop>
            <MarginLeft>0</MarginLeft>
            <MarginRight>0</MarginRight>
            <MarginBottom>0</MarginBottom>
        </DeviceInfo>";
        Warning[] warnings;
        m_streams = new List<Stream>();
       /*>>>>>*/ report.Render("Image", deviceInfo, CreateStream, out warnings);
    }

我不知道如何直接打印到打印机

1 个答案:

答案 0 :(得分:1)

MSDN的代码使用PrintDocument打印报告。 只需将此属性设置为使用特定的打印机:

printDoc.PrinterSettings.PrinterName = "NameOfYourPrinter"

如果您在Report.Render上收到错误,则可能是您的rdlc文件存在问题。你可以在ReportViewer中查看它而不会出错吗?