在RDLC中的列中重复表

时间:2012-10-31 15:41:41

标签: c# winforms report rdlc

我在VS2010 RDLC报告中有一个表。它会打印数据,因为我们正在尝试节省一些空间。

我希望在开始新页面之前将表重复为同一页面上的第二列。例如:

Table            Table
Table            Table
Table            Table
Table            Table
Table            Table
=== page break =====

而不是

Table
Table
Table
Table
Table
Table
Table
====page break=====
Table
Table
Table

如何在表格中输入第二列?

1 个答案:

答案 0 :(得分:0)

在报告属性下,有一个列属性 我把它改成了两(2) 但默认报表查看器不会显示列,也不会打印列。

所以我将报告导出为PDF,然后打印该文件。

private void Export(LocalReport report)
{
        try
        {
            string deviceInfo =
              @"<DeviceInfo>
            <OutputFormat>PDF</OutputFormat>
            <PageWidth>8.5in</PageWidth>
            <PageHeight>11in</PageHeight>
            <MarginTop>0.25in</MarginTop>
            <MarginLeft>0.25in</MarginLeft>
            <MarginRight>0.25in</MarginRight>
            <MarginBottom>0.25in</MarginBottom>
            </DeviceInfo>";
            Warning[] warnings;
             string[] streamIds;
            string mimeType = string.Empty;
            string encoding = string.Empty;
            string extension = string.Empty;

            m_streams = new List<Stream>();
            byte[] bytes = report.Render("PDF", deviceInfo, out mimeType, out encoding, out extension, out streamIds, out warnings);

            using (FileStream fs = new FileStream("output.pdf", FileMode.Create))
            {
                fs.Write(bytes, 0, bytes.Length);
            }

            foreach (Stream stream in m_streams)
                stream.Position = 0;
        }
        catch (Exception ex)
        {
            Common.LogManager.WriteToLog(ex.Message + Environment.NewLine + ex.StackTrace);
        }
    }

然后打印我在新进程中使用print dos命令:

ProcessStartInfo psi = new ProcessStartInfo();
psi.UseShellExecute = true;
psi.Verb = "print";
psi.WindowStyle = ProcessWindowStyle.Hidden;
psi.FileName = "output.pdf";
Process.Start(psi);

报告完全按照我的要求打印出来。