Stimulsoft Reports.Net示例演示:WinForms 类别中从代码导出报告到必要的格式

发布时间 : 2021-09-23 09:33:13.540|阅读 91 次

概述:此示例项目演示了如何从代码中将报告导出为所需的格式并保存结果。

相关链接:

Stimulsoft Ultimate是用于创建报表和仪表板的通用工具集。该产品包括用于WinForms、ASP.NET、.NET Core、JavaScript、WPF、PHP、Java和其他环境的完整工具集。

Stimulsoft Reports不仅拥有强大的报表导出系统,而且还支持多种报表导出格式,拥有简单且强大的报表引擎。Stimulsoft Reports基本原则是,用简单常规的方法创建报表,将不同的技术应用于应用程序。Stimulsoft Reports .NET一个基于.NET框架的报表生成器,能够帮助你创建结构、功能丰富的报表。不仅界面友好,而且使用便捷,能够让你轻松创建所有报表。

点击下载Stimulsoft Reports .NET v2021.3.1最新版

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

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 Reports.Net示例演示:WinForms 类别中从代码导出报告到必要的格式


Aspose、E-iceblue、FastReport、Stimulsoft等文档/报表图表类开发工具享超低折扣,如有需要可直接联系在线客服


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