Porting a unicode enabled Delphi 2006 application to Delphi 2009 - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T12:18:19Zhttp://stackoverflow.com/feeds/question/300446http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/300446/porting-a-unicode-enabled-delphi-2006-application-to-delphi-20095Porting a unicode enabled Delphi 2006 application to Delphi 2009Steve2008-11-18T22:49:50Z2008-11-19T11:26:41Z
<p>I have an application which is fully unicode compatible in Delphi 2006. I had replaced all AnsiStrings with WideStrings, replaced all VCL controls with TNT controls, and changed all string functions from AnsiStrings to WideStrings. It looks like all that work was for nothing, because I'm going to have to reverse it all. Is there anyway to Trick Delphi 2009 into thinking Widestrings are in fact UnicodeStrings?</p>
http://stackoverflow.com/questions/300446/porting-a-unicode-enabled-delphi-2006-application-to-delphi-2009/300547#30054712Answer by Nick Hodges for Porting a unicode enabled Delphi 2006 application to Delphi 2009Nick Hodges2008-11-18T23:28:00Z2008-11-18T23:28:00Z<p>No, there really isn't. But you won't regret the work to truly Unicode enable your application.</p>
<p>The TNT controls can easily be replaced with the regular VCL controls. You can do that pretty simply using the wizard from GExperts (<a href="http://www.gexperts.org" rel="nofollow">http://www.gexperts.org</a>) that replaces one control type with another automatically. </p>
<p>Then, you can change all your WideString declarations to regular strings. String is now an alias for UnicodeString, and so all your strings can hold Unicode data just fine. </p>
<p>BTW, the author of the TNT controls, Troy Wolbrink, now vastly prefers Delphi 2009 over his own controls.</p>
http://stackoverflow.com/questions/300446/porting-a-unicode-enabled-delphi-2006-application-to-delphi-2009/301308#3013080Answer by samir105 for Porting a unicode enabled Delphi 2006 application to Delphi 2009samir1052008-11-19T08:29:00Z2008-11-19T08:29:00Z<p>Main advantage of TNT Controls is only that It can work as Ansi program in Windows 9x. It is not full unicode. If you want full unicode support everywhere (such as Stringlist.LoadFromFile, Form.OnKeyPress) it's good to move to Delphi 2009.</p>
http://stackoverflow.com/questions/300446/porting-a-unicode-enabled-delphi-2006-application-to-delphi-2009/301619#3016190Answer by Bruce McGee for Porting a unicode enabled Delphi 2006 application to Delphi 2009Bruce McGee2008-11-19T11:26:41Z2008-11-19T11:26:41Z<p>I have done the same thing in an application that used different XML files as input. In my case, I was working with UTF-8 (so we could use regular strings) throughout the program and only converted to WideString for display purposes (TNT controls).</p>
<p>I removed the conversions back and forth between WideString and UTF-8 and replaced the TNT controls with regular VCL controls by hand since there were only a handful of forms.</p>
<p>The conversion took about an hour with testing. The code is simpler and the program is noticeably faster.</p>