| View previous topic :: View next topic |
| Author |
Message |
Tom Mueller Guest
|
Posted: Mon Sep 01, 2003 2:04 pm Post subject: How to translate special Chars (Umlaute) in form resources |
|
|
Hello All
Delphi 7 stores special characters, for example german Umlaute (äöü) as a
numeric representation in the form-resource files.
For example a Caption of a button:
'Käfig' is stored as 'K'#228'fig'
Is this a UTF8 representatioin of the Umlaut and how can I convert it into
its ascii representation?
TIA
TOM
|
|
| Back to top |
|
 |
Lars B. Dybdahl Guest
|
Posted: Mon Sep 01, 2003 5:30 pm Post subject: Re: How to translate special Chars (Umlaute) in form resourc |
|
|
Tom Mueller wrote:
| Quote: | 'Käfig' is stored as 'K'#228'fig'
Is this a UTF8 representatioin of the Umlaut
|
No - it is a Windows ANSI character set representation. It is exactly the
same syntax as you would write in your Delphi source code.
Lars.
--
Freelance programmer
Denmark
Free GNU gettext for Delphi i18n/localization tool:
http://dybdahl.dk/dxgettext/
|
|
| Back to top |
|
 |
Leo Saguisag (Borland) Guest
|
Posted: Tue Sep 02, 2003 5:58 pm Post subject: Re: How to translate special Chars (Umlaute) in form resourc |
|
|
| Quote: | Is this a UTF8 representatioin of the Umlaut
|
More accurately, it's the Unicode code point for that character.
|
|
| Back to top |
|
 |
|