Porting a unicode enabled Delphi 2006 application to Delphi 2009 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T12:18:19Z http://stackoverflow.com/feeds/question/300446 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/300446/porting-a-unicode-enabled-delphi-2006-application-to-delphi-2009 5 Porting a unicode enabled Delphi 2006 application to Delphi 2009 Steve 2008-11-18T22:49:50Z 2008-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#300547 12 Answer by Nick Hodges for Porting a unicode enabled Delphi 2006 application to Delphi 2009 Nick Hodges 2008-11-18T23:28:00Z 2008-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#301308 0 Answer by samir105 for Porting a unicode enabled Delphi 2006 application to Delphi 2009 samir105 2008-11-19T08:29:00Z 2008-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#301619 0 Answer by Bruce McGee for Porting a unicode enabled Delphi 2006 application to Delphi 2009 Bruce McGee 2008-11-19T11:26:41Z 2008-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>