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