linjunhalida
linjunhalida

Reputation: 4655

where can I find a good delphi library?

I'm using delphi6, and it lacks the following abilities:

how can I find this things?

Upvotes: -1

Views: 1160

Answers (6)

Stephan Eggermont
Stephan Eggermont

Reputation: 15907

The first three are in the VCL, take a look in the help and the sources. Delphi 6 has no generics, so cannot be used with a template library. And no garbage collection.

If you want to program in Delphi, forget about them. If not, find another language.

Upvotes: -1

Vegar
Vegar

Reputation: 12898

As an alternative to DeCAL (Which is a very good alternative to TList without generics), I will propose EZSDL by Julian M Bucknall.

Upvotes: 2

user81864
user81864

Reputation: 563

List of main third party components compatible with Delphi 2007 for Win32 and RAD Studio 2007 by Andreano Lanusse at http://edn.embarcadero.com/article/37455

Upvotes: 1

Uli Gerhardt
Uli Gerhardt

Reputation: 13991

There is DeCAL, which claims to be similar to the STL. I've never really tested it, however.

Upvotes: 3

JDustin
JDustin

Reputation: 53

There are many third party delphi libraries, components and source code examples on the net. Just a couple off the top of my head

JEDI http://www.delphi-jedi.org/

and

a Delphi super page http://delphi.icm.edu.pl/

Upvotes: 2

idursun
idursun

Reputation: 6335

Try Jedi Code Library. There are good replacements for container classes and sorting algorithms. I don't think there is GC or STL-like library for Delphi 6.

Delphi 6 is behind the times, check Delphi 2009 or at least Turbo Delphi

Upvotes: 11

Related Questions