轉帖|其它|編輯:郝浩|2011-04-25 14:04:32.000|閱讀 639 次
概述:本文主要介紹如何保存和加載呈現過的 Stimulsoft Reports報表,希望對大家有幫助。
# 界面/圖表報表/文檔/IDE等千款熱門軟控件火熱銷售中 >>
To save a rendered report:
C#:
//Rendering report
StiReport report = new StiReport();
report.Load("report.mrt");
report.Render();
//Saving report
report.SaveDocument("document.mdc");
VB:
Rendering report
Dim Report As StiReport = New StiReport()
Report.Load("report.mrt")
Report.Render()
'Saving report
Report.SaveDocument("document.mdc")
To load previously saved rendered report:
C#:
StiReport report = new StiReport();
report.LoadDocument("document.mdc");
VB:
Dim Report As StiReport = New StiReport()
Report.LoadDocument("document.mdc")
本站文章除注明轉載外,均為本站原創或翻譯。歡迎任何形式的轉載,但請務必注明出處、不得修改原文相關鏈接,如果存在內容上的異議請郵件反饋至chenjj@fc6vip.cn
文章轉載自:網絡轉載