轉(zhuǎn)帖|其它|編輯:郝浩|2011-04-25 14:04:32.000|閱讀 639 次
概述:本文主要介紹如何保存和加載呈現(xiàn)過(guò)的 Stimulsoft Reports報(bào)表,希望對(duì)大家有幫助。
# 界面/圖表報(bào)表/文檔/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")
本站文章除注明轉(zhuǎn)載外,均為本站原創(chuàng)或翻譯。歡迎任何形式的轉(zhuǎn)載,但請(qǐng)務(wù)必注明出處、不得修改原文相關(guān)鏈接,如果存在內(nèi)容上的異議請(qǐng)郵件反饋至chenjj@fc6vip.cn
文章轉(zhuǎn)載自:網(wǎng)絡(luò)轉(zhuǎn)載