Page 1 of 1

problem with language on Windows 8 / RAD STUDIO XE3

Posted: Mon Jul 01, 2013 1:59 pm
by 16565261
in design time i have set the Language = Italian, but a run time i see the english Language.
Can you help me to solve the problem.

Sorry for my bad english....

Alex

Re: problem with language on Windows 8 / RAD STUDIO XE3

Posted: Tue Jul 02, 2013 2:14 pm
by yeray
Hi Alex,

To change the language of the editor at runtime you can do as follows:

Code: Select all

uses TeeItalian;

procedure TForm1.FormCreate(Sender: TObject);
begin
  TeeSetItalian;
end;