可視化報告生成器FastReport VCL功能指南:從Delphi/C ++ Builder/Lazarus創(chuàng)建Word 2007 XML格式的文件
報表生成器FastReport VCL是用于在軟件中集成商務(wù)智能的現(xiàn)代解決方案。它提供了可視化模板設(shè)計器,可以訪問最受歡迎的數(shù)據(jù)源,報告引擎,預(yù)覽,將過濾器導(dǎo)出為30多種格式,并可以部署到云,Web,電子郵件和打印中。
近日,F(xiàn)astReport VCL更新至v6.7,在新版本中,添加了對最新版本IDE的支持,簡化了用于付款標準的條形碼的創(chuàng)建,新增從預(yù)覽窗口直接編輯RichView的功能,同時修復(fù)了多個Bug問題。歡迎下載體驗。(點擊下方按鈕下載)
DOCX是一個可以由第三方程序解壓縮的存檔文件。這種格式是著名的DOC擴展的升級版本。一個顯著的區(qū)別是在保持所有原始圖像參數(shù)的情況下,文件的權(quán)重很低。如果.doc是一個二進制文本文件,那么.docx包含XML文件和文件壓縮后的附加文件夾。
這是一種通用格式,幾乎可以被任何電子郵件客戶端、云存儲和移動設(shè)備上的文本編輯器讀取。
你可以使用以下程序與docx工作:WindowsWord, Libre Office, Open Office, Word Pad, AiReader, Ice Book Reader, Caliber, Universal Viewer, Text Maker, Ability Write。這只是眾多可以打開DOCX格式文件的程序中的一小部分。
之前我們講解了【從Delphi / Lazarus將報表導(dǎo)出到Excel XML】。但是如何從Delphi或Lazarus創(chuàng)建DOCX格式的文件呢?接下來為你講解。
在Delphi中保存docx格式,無需編寫任何代碼!
首先,在表單上添加TfrxReport和TfrxDOCXExport(導(dǎo)出到Microsoft Word 2007 XML)組件。然后在設(shè)計器中創(chuàng)建一個報告模板,生成一個報告,點擊預(yù)覽窗口中的保存,并從預(yù)覽中調(diào)用導(dǎo)出(下面我將描述如何使用Delphi代碼以DOCX格式保存)。導(dǎo)出到DOCX設(shè)置的窗口將會出現(xiàn)。
雖然設(shè)置不多,但還是值得一談的。首先,我們可以選擇將文檔的哪些頁面導(dǎo)出為Word——特定的頁面或某個范圍。
通常,可以指定DOCX文件的保存位置(在本地存儲中、通過電子郵件發(fā)送、上傳到FTP或云)。
導(dǎo)出后打開:結(jié)果文件將在導(dǎo)出后立即被與這些文件關(guān)聯(lián)的任何軟件打開。
如何保存在DOCX格式直接從Delphi / Lazarus使用代碼
procedure TForm1.Button1Click(Sender: TObject); begin {Generate a report. The report must be generated before exporting} frxReport1.PrepareReport(); {Set the range of pages to export. By default, all pages of the generated report are exported} frxDOCXExport1.PageNumbers := '2-3'; {Set whether to open the resulting file after export} frxDOCXExport1.OpenAfterExport := False; {Set whether to display export progress (show which page is currently being exported)} frxDOCXExport1.ShowProgress := False; {Set whether to display the export filter settings dialog box} frxDOCXExport1.ShowDialog := False; {Set the name of the resulting file.} {Please note that if you do not set the file name and disable the export filter dialog box,} {the file name selection dialog will still be displayed} frxDOCXExport1.FileName := 'C:\Output\test.docx'; {Export the report} frxReport1.Export(frxDOCXExport1); end;
還想要更多嗎?您可以點擊閱讀【FastReport 報表2020最新資源盤點】,查找需要的教程資源。如果您有任何疑問或需求,請隨時加入FastReport技術(shù)交流群(783996712),我們很高興為您提供查詢和咨詢。