• <menu id="w2i4a"></menu>
  • logo Stimulsoft Reports.WinForms教程-2019

    文檔首頁(yè)>>Stimulsoft Reports.WinForms教程-2019>>【Stimulsoft Reports.WinForms教程】從代碼中將報(bào)表導(dǎo)出為必要的格式

    【Stimulsoft Reports.WinForms教程】從代碼中將報(bào)表導(dǎo)出為必要的格式


    【下載Stimulsoft Reports.Ultimate最新版本】

    此示例項(xiàng)目演示了如何從代碼中將報(bào)表導(dǎo)出為必要的格式并保存結(jié)果。該示例表示導(dǎo)出為常用格式,如果需要,可以在同一場(chǎng)景中使用任何其他導(dǎo)出。首先,指定要導(dǎo)出的報(bào)表的路徑:

    private void button1_Click(object sender, System.EventArgs e)
    {
        StiReport report = new StiReport();
        report.RegData(dataSet1);
     
        report.Load("..\\..\\Reports\\" + (string)lbReports.SelectedItem + ".mrt");
        report.Render(false);
    ...

    然后,選擇要將報(bào)表導(dǎo)出到的文件格式:

    ...
        string file = (string)lbReports.SelectedItem + ".";
     
        if (rbPdf.Checked)
        {
            file += "pdf";
            report.ExportDocument(StiExportFormat.Pdf, file);
            System.Diagnostics.Process.Start(file);
        }
        else if (rbHtml.Checked)
        {
            file += "html";
            report.ExportDocument(StiExportFormat.HtmlTable, file);
            System.Diagnostics.Process.Start(file);
        }
        else if (rbXls.Checked)
        {
            file += "xls";
            report.ExportDocument(StiExportFormat.Excel, file);
            System.Diagnostics.Process.Start(file);
        }
        else if (rbTxt.Checked)
        {
            file += "txt";
            report.ExportDocument(StiExportFormat.Text, file);
            System.Diagnostics.Process.Start(file);
        }
        else if (rbRtf.Checked)
        {
            file += "rtf";
            report.ExportDocument(StiExportFormat.RtfTable, file);
            System.Diagnostics.Process.Start(file);
        }
    }

    示例代碼的結(jié)果如下圖所示:

    Stimulsoft

    下載示例

    購(gòu)買(mǎi)Stimulsoft正版授權(quán),請(qǐng)點(diǎn)擊“咨詢?cè)诰€客服”喲!

    Stimulsoft

    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();