0

我有一个主报告文件和一个子报告文件。

主报告文件调用子报告文件。

我们先看一下代码。

    private void CreatePDF(string fileName)
    {
        try
        {
            // Variables
            Warning[] warnings;
            string[] streamIds;
            string mimeType = string.Empty;
            string encoding = string.Empty;
            string extension = string.Empty;
            string _strGijunMonth = DateTime.Parse(GijunMonth).ToString("yyyyMM");
            byte[] bytes = null;

            // Setup the report viewer object and get the array of bytes
            ReportViewer viewer = new ReportViewer();
            viewer.LocalReport.DataSources.Clear();
            viewer.ProcessingMode = ProcessingMode.Local;
            viewer.LocalReport.ReportEmbeddedResource = "MasterReport.rdlc";
            viewer.LocalReport.EnableExternalImages = true;

            DataTable _dt = base.GetDataTable(
               "my_procedure"
               , _strMainNo
               );
            _intTotalPage = _dt.Rows.Count * 2;

            ReportDataSource _ds = new ReportDataSource();
            _ds.Value = _dt;
            _ds.Name = "SetData";
            viewer.LocalReport.DataSources.Add(_ds);

            // sub report event
            viewer.LocalReport.SubreportProcessing += new SubreportProcessingEventHandler(LocalReport_SubreportProcessing);

            // print
            viewer.RefreshReport();
            bytes = viewer.LocalReport.Render("PDF", null, out mimeType, out encoding, out extension, out streamIds, out warnings);

            System.IO.FileStream newFile1 = new System.IO.FileStream(fileName, System.IO.FileMode.Create);
            newFile1.Write(bytes, 0, bytes.Length);
            newFile1.Close();
        }
        catch
        {
            throw;
        }
    }

    void LocalReport_SubreportProcessing(object sender, SubreportProcessingEventArgs e)
    {
        try
        {
            string MAINT_NO = e.Parameters["MAINT_NO"].Values[0];
            string _strGijunMonth = DateTime.Parse(GijunMonth).ToString("yyyyMM");

            // get sub report procedure
            DataSet _dsCust_Info = base.GetDataSet(
                "my_sub_procedure"
                , MAINT_NO
                , _strGijunMonth
                );

            ----> by somehow, it should throw error. If so, I should not print error page to pdf.
        }
        catch (Exception err)
        {
        }
    }

我的应用程序使用文件名参数调用“CreatePDF”方法。

假设我必须打印到 PDF 5 页。

调用 LocalReport_SubreportProcessing 事件时,部分子报表数据中有错误值。所以,我在 LocalReport_SubreportProcessing 事件中抛出了一个错误。

例如,当我说有 5 页,只有 1、2、3 和 5 页是可以的,第 4 页不应该打印为 PDF。

我想知道如何删除 ReportViewer 已经创建的 PDF 页面。如您所见,LocalReport_SubreportProcessing 事件发生在创建 PDF 文件之后。

任何人有任何想法来解决这个问题?

4

1 回答 1

1

也许reportViewer.CancelRendering(0); 当你检测到错误?

于 2013-10-04T14:18:31.207 回答