I am running Kylix and wondered if it was possible to display localize
an application in Chinese.
If so what would be the steps to follow?
I am running on various distribution (Ubuntu, Suse...) so any
information should help.
Right now my application only shows ? for each chinese characters. The
same application works beautifully on Windows. (Delphi 7)
On the same Linux box, Firefox works ok at displaying chinese (all
fonts are installed).
Again any info would be appreciated.
Thanks
Zindine
uses qt,..;
.....
.....
f: TFont;
Initialization
begin
f := TFont.Create();
f.CharSet := fcsUnicode;
f.Name := 'chinese fontname'
QFont_setDefaultFont(f.Handle);
end;
Finalization
begin
f.Free;
end;
----------------
Hoping this helps you.
Haruyuki Fujimaki
Tsukuba, Japan
That did the trick.
Thanks a lot
Zindine
On May 28, 2:58 am, Haruyuki FUJIMAKI