FastReport 4.7 VCL language
Hello,
i'm new at this forum. Yesterday i bought FastReport 4.7 VCL Standard Edition for my Delphi 2007 and i tried to change the language of the
Designer and the Preview to german but i can't find an option for changing the language.
I downloaded the german documentation and in this documentation a german version of the Designer is used.
Is it possible?
Thanks for your help.
Kind regards
Robert
i'm new at this forum. Yesterday i bought FastReport 4.7 VCL Standard Edition for my Delphi 2007 and i tried to change the language of the
Designer and the Preview to german but i can't find an option for changing the language.
I downloaded the german documentation and in this documentation a german version of the Designer is used.
Is it possible?
Thanks for your help.
Kind regards
Robert
Comments
Anyway, add this to your code (anywhere, can be on your main form .oncreate() event:
uses
frxRes;
begin
frxResources.LoadFromFile('C:\Program Files\FastReports\FastReport 4\Res\German\frxrcDesgn.xml');
frxResources.LoadFromFile('C:\Program Files\FastReports\FastReport 4\Res\German\frxrcClass.xml');
frxResources.LoadFromFile('C:\Program Files\FastReports\FastReport 4\Res\German\frxrcExports.xml');
frxResources.LoadFromFile('C:\Program Files\FastReports\FastReport 4\Res\German\frxrcInsp.xml');
end;
Check if the file locations are correct in your system. Each file has its purpose, see their names: there is one for the Designer, one for the Inspector, one for the Exports and one generic, for the Classes/Objects.
If you get some funny characters, you probably need to change your Windows localization settings in your Windows Control Panel, add the German keyboard and languages (and reboot the computer, even if Windows don't say you have to).
Cheers, Alex
For runtime it works great [img]style_emoticons/<#EMO_DIR#>/rolleyes.gif" style="vertical-align:middle" emoid=":rolleyes:" border="0" alt="rolleyes.gif" /> Robert[/img]