【Stimulsoft Reports.WinForms教程】从代码中将报表导出为必要的格式

发布时间 : 2018-09-07 17:08:30.000|阅读 303 次

概述:本文主要讲解在Stimulsoft如何从代码中将报表导出为必要的格式。

相关链接:

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

此示例项目演示了如何从代码中将报表导出为必要的格式并保存结果。该示例表示导出为常用格式,如果需要,可以在同一场景中使用任何其他导出。首先,指定要导出的报表的路径:

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);
...

然后,选择要将报表导出到的文件格式:

...
    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);
    }
}

示例代码的结果如下图所示:

Stimulsoft

下载示例

购买Stimulsoft正版授权,请点击“咨询在线客服”哟!

Stimulsoft


在线
客服
微信
QQ 电话
023-68661681
返回
顶部