Search Results

5
votes
3answers
587 views

Loading Delphi designtime packages on a project base

Is there a way to select designtime packages on a project bases? Packages are very useful in large project to keep the build time acceptable, but they are a real pita in those large project …
1
vote

Delphi component to help model project costs

On the risk of seeming to be affiliated with DevExpress* take a look here : ExpressScheduler You can have a …
-1
votes

Will you use Delphi Prism

Since Delphi is always catching up on .Net, I don't see any valid reason for using it, besides not being a MS product. There is already a good language for .Net that has everything in it th …
1
vote

Delphi database: Setting up an array of ADT fields at runtime

You could split it up into a master and detail dataset. The points go in the detail dataset with a record per point. …
10
votes

How to automatically free classes/objects?

Use interfaces instead of objects. They are reference counted and freed automatically when the reference count reaches 0. …
0
votes

(Delphi) Call DLL with function pointer parameter

As shunty already pointed out, both Allocate and Deallocate should be procedures in delphi. Furthermore, the psize parameter should be a pointer like the c declaration states. And remember you must …