如何保存和加载Stimulsoft报表?

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

问题描述:

如何保存和加载报表?

问题解答:

请参考以下代码:

加载报表-

C#
StiReport report = new StiReport();
report.Load("report.mrt");

VB
Dim Report As StiReport = New StiReport()
Report.Load("report.mrt")
To save a report:

保存报表-

C#
StiReport report = new StiReport();
report.Save("report.mrt");

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

 

Tag标签:Stimulsoft FAQ 

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

上一篇: 为什么运行Stimulsoft Reports.Web实例时无法预览报表?

下一篇: 如何渲染Stimulsoft Reports.Net报表?