如何渲染Stimulsoft Reports.Net报表?

作者:    来源:    浏览:Loading...      日期:2012-09-18

问题描述:

如何渲染Stimulsoft Reports.Net报表?

问题解答:

以下代码可渲染报表并将它显示在预览窗口:
C#
StiReport report = new StiReport();
report.Load("report.mrt");
report.Show();

VB
Dim Report As StiReport = New StiReport()
Report.Load("report.mrt")
Report.Show()

 

Tag标签:Stimulsoft Reports.Net 渲染报表 

本站文章除注明转载外,均为本站原创或翻译
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明:文章转载自:Stimulsoft中文网 [http://www.Stimulsoft.cn/]
本文地址: http://www.Stimulsoft.cn/Resources/FAQ/48.html

上一篇: 如何保存和加载Stimulsoft报表?

下一篇: 如何在Stimulsoft Reports.Web中完成数据源的绑定?