翻譯|使用教程|編輯:張瑩心|2021-09-23 09:33:13.540|閱讀 160 次
概述:此示例項目演示了如何從代碼中將報告導(dǎo)出為所需的格式并保存結(jié)果。
# 界面/圖表報表/文檔/IDE等千款熱門軟控件火熱銷售中 >>
相關(guān)鏈接:
Stimulsoft Ultimate是用于創(chuàng)建報表和儀表板的通用工具集。該產(chǎn)品包括用于WinForms、ASP.NET、.NET Core、JavaScript、WPF、PHP、Java和其他環(huán)境的完整工具集。
Stimulsoft Reports不僅擁有強大的報表導(dǎo)出系統(tǒng),而且還支持多種報表導(dǎo)出格式,擁有簡單且強大的報表引擎。Stimulsoft Reports基本原則是,用簡單常規(guī)的方法創(chuàng)建報表,將不同的技術(shù)應(yīng)用于應(yīng)用程序。Stimulsoft Reports .NET一個基于.NET框架的報表生成器,能夠幫助你創(chuàng)建結(jié)構(gòu)、功能豐富的報表。不僅界面友好,而且使用便捷,能夠讓你輕松創(chuàng)建所有報表。
點擊下載Stimulsoft Reports .NET v2021.3.1最新版
此示例項目演示了如何從代碼中將報告導(dǎo)出為所需的格式并保存結(jié)果。該示例代表對流行格式的導(dǎo)出,如果您需要,您可以在同一場景中使用任何其他導(dǎo)出。首先,指定要導(dǎ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); ...然后,選擇要將報告導(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é)果:
Aspose、E-iceblue、FastReport、Stimulsoft等文檔/報表圖表類開發(fā)工具享超低折扣,如有需要可直接。
本站文章除注明轉(zhuǎn)載外,均為本站原創(chuàng)或翻譯。歡迎任何形式的轉(zhuǎn)載,但請務(wù)必注明出處、不得修改原文相關(guān)鏈接,如果存在內(nèi)容上的異議請郵件反饋至chenjj@fc6vip.cn