Search Results

1
vote

How to get list of units in a Delphi Compiled Package (.dcp file)

You could create a new package, add your .dcp to its requires clause, add a new unit to it and use code completion in the uses clause - it will show you all available units in all required packages …
2
votes

Delphi: Required package not found

If this happens when the IDE is trying to load a package: your package output directory (where the *.bpl files go) has to be on your system's PATH environment variable. Packages are statically link …
4
votes

Fuss over Runtime and Design Time packages in Delphi

Designtime stuff may use Delphi's internal units/packages to which you neither have source code nor are legally allowed to distribute in binary form. You probably don't want to make …
0
votes

Delphi Objects in Packages

Your main application has to be compiled with runtime packages. …
2
votes

Delphi 2006 loses component package

The BPL or one of its dependencies could not be found. They may have been found during the installation of the package because of the current directory of the BDS process at the time but not found …