"Delphi Fundamentals" in Delphi 2009 - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T06:42:14Zhttp://stackoverflow.com/feeds/question/946296http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/946296/delphi-fundamentals-in-delphi-20095"Delphi Fundamentals" in Delphi 2009J K Kunil2009-06-03T18:12:03Z2009-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#9464283Answer by ulrichb for "Delphi Fundamentals" in Delphi 2009ulrichb2009-06-03T18:41:30Z2009-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<TKey,TValue></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#9485203Answer by Wouter van Nifterick for "Delphi Fundamentals" in Delphi 2009Wouter van Nifterick2009-06-04T03:51:22Z2009-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>