Delphi Conversion Unicode Issues

前端 未结 6 1835
终归单人心
终归单人心 2020-11-28 23:53

We have large commercial app that we want to convert from Delphi 6 to 2010. Approx 10 3rd party component sets, all with source code... I have heard warnings about Unicode

6条回答
  •  夕颜
    夕颜 (楼主)
    2020-11-29 00:40

    Approx 10 3rd party component sets, all with source code.

    One thing I'd add is if the component doesn't support Delphi 2009/2010, don't try to upgrade it by hacking the code.

    Following is what I posted on How do the new string types work in Delphi 2009/2010?:

    See Delphi and Unicode, a white paper written by Marco Cantù and I guess The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!), written by Joel.

    One pitfall is that the default Win32 API call has been mapped to use the W (wide string) version instead of the A (ANSI) version, for example ShellExecuteA If your code is doing tricky pointer code assuming internal layout of AnsiString, it will break. A fallback is to substitute PChar with PAnsiChar, Char with AnsiChar, string with AnsiString, and append A at the end of Win32 API call for that portion of code. After the code actually compiles and runs normally, you could refactor your code to use string (UnicodeString).

提交回复
热议问题