"Delphi Fundamentals" in Delphi 2009 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T06:42:14Z http://stackoverflow.com/feeds/question/946296 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/946296/delphi-fundamentals-in-delphi-2009 5 "Delphi Fundamentals" in Delphi 2009 J K Kunil 2009-06-03T18:12:03Z 2009-06-04T19:45:20Z <p>Hello, Has anybody used/converted "Delphi Fundamentals" in Delphi 2009? - <a href="http://fundementals.sourceforge.net/" rel="nofollow">http://fundementals.sourceforge.net/</a></p> <p>I'm using Dictionaries (cArrays.pas,cDictionaries.pas,cStrings.pas,cTypes.pas) in my project and now i have some troubles on upgrading code.</p> <p>I'll be highly obliged if anybody can convert the above mentioned units in Delphi 2009. I'm quite new to Delphi, started working with 2007 and 2009 has been released, I just cannot help myself...</p> <p>Thank you</p> http://stackoverflow.com/questions/946296/delphi-fundamentals-in-delphi-2009/946428#946428 3 Answer by ulrichb for "Delphi Fundamentals" in Delphi 2009 ulrichb 2009-06-03T18:41:30Z 2009-06-03T18:41:30Z <p>There is no official version of Delphi Fundamentals for D2009 (and I think there never will be any).</p> <p>I think it would be the best option to rewrite the dictionary code using the Delphi-native <code>TDictionary&lt;TKey,TValue&gt;</code> class inside <code>Generics.Collections.pas</code>, or using the <a href="http://code.google.com/p/delphilhlplib/" rel="nofollow">delphilhlplib</a> (<a href="http://delphilhlplib.googlecode.com/svn/trunk/Library/src/Collections/DeHL.Collections.Dictionary.pas" rel="nofollow">Collections/DeHL.Collections.Dictionary.pas</a>).</p> http://stackoverflow.com/questions/946296/delphi-fundamentals-in-delphi-2009/948520#948520 3 Answer by Wouter van Nifterick for "Delphi Fundamentals" in Delphi 2009 Wouter van Nifterick 2009-06-04T03:51:22Z 2009-06-04T19:45:20Z <p>I use cUtils, cDateTime and cStrings in a project.</p> <p>After a 30 minute session of searching and replacing like a madman I got them to compile in Delphi 2009, with just a couple of warnings left to fix.</p> <ul> <li>Char>>>>AnsiChar</li> <li>String>>>>AnsiString</li> <li>PChar>>>>PAnsiChar</li> <li>PString>>>>PAnsiString</li> </ul> <p>It passes all of its selftests, and so far things seem to work fine. I've shared it here: <a href="http://www.xs4all.nl/~niff/Fundamentals%5FUtilsD2009.zip" rel="nofollow">http://www.xs4all.nl/~niff/Fundamentals_UtilsD2009.zip</a></p> <p><strong>Update</strong> I've added a ported cDataStructs.pas to the zipfile, which contains the dictionary classes. This one still has a lot of compiler warnings that you might want to fix, but the self-tests pass, so you could try and see if it works for you.. </p>