Does FR support unicode and how have I to use it

edited 7:04AM in FastReport 4.0
dear together,

I've implemented FR in an application, which support different languages as english, german... chinese... russian and so on. Now I have to support chinese.... also inside the report.

(??) Does FR support unicode (Skript, memo,userfunction, ...)

To support the manor languages english, french and english I use an ANSI-Kofigurationfile to translate the memo.text.
procedure LoadSetMemo( MemoName : string; Sprache : string;  Ini  : TIniFile; Component : TfrxComponent);
var
  iniString   : string;      
begin                           
  iniString:= Ini.ReadString('MEMO_'+Sprache,MemoName+'.Text','');          
  if iniString <>'<<NULL>>' then TfrxMemoView(Component.FindObject(MemoName)).Text :=iniString;          
end;

It's running fine. >  The next step is to support unicode to print USC-2 little endian letter.>(??) My Questions:
Is FR support WideString? Because, I've got the answer, that this class is unknown.
Which class have I to use instead of TIniFile?
How do I have to implement the userfunctions to support the unicode (widestring?)

Thank you in anticipation

Leave a Comment