文件名称:解決FastReport 4.7X中文亂碼問題
文件大小:156KB
文件格式:EXE
更新时间:2012-01-28 19:24:52
Fastreport 中文
FastReport 4.7x雖然已支援unicode,也附有*(繁中)的介面,但轉換後仍是一大堆?號。 其中問題出在Res\frcc.exe,frcc轉檔後的儲存格式為Ansi並非UTF-8,經手動轉換並更改中文字被截斷的部份。 此部份可下載frcc.rar,解壓後取代FastReport 4\Res\frcc.exe 另一部份為frxRes.pas,字碼轉換的問題,應修改: procedure TfrxResources.AddXML(const Str: AnsiString); var Stream: TStringStream; begin Stream := TStringStream.Create(Str); LoadFromStream(Stream); Stream.Free; end; 修改為 procedure TfrxResources.AddXML(const Str: AnsiString); var Stream: TStringStream; begin {$IFDEF Delphi12} Stream := TStringStream.Create(UTF8Encode(String(str))); {$ELSE} Stream := TStringStream.Create(Str); {$ENDIF} LoadFromStream(Stream); Stream.Free; end; 完成後執行:FastReport 4 recompile wizard 1. Change language to: "*" 2. Compile 3. Recompile all package 4. Compile