{$IFNDEF UNICODE} // pre Delphi 2009
type
  UnicodeString = WideString;
...

Delphi On Change Value Or Word in a W...

by ahuser, February 22, 2009 11:00 Star_fullStar_full

This code is is based on yo...

7983135a9fcc8bcfe9d9de240225512a Talk
type
  THashValue = Cardinal;

...

Delphi On custom index for class(TList)

by ahuser, February 12, 2009 17:32 Star_fullStar_fullStar_fullStar_full

And this is the code that u...

7983135a9fcc8bcfe9d9de240225512a Talk
function TMylist.GetNameIndex(const aName: string): integer; // use "const" for strings to eliminate the injected try/finally
var
  LocalList: PPointerList;
...

Delphi On custom index for class(TList)

by ahuser, February 12, 2009 11:52 Star_fullStar_fullStar_fullStar_fullStar_full

The following code should b...

7983135a9fcc8bcfe9d9de240225512a Talk