Search Results

1
vote

In Delphi 7, how do I escape a percent sign (%) in the Format function?

Obligatory: http://xkcd.com/327/ :-) Depending on context, your approach might be vulnerable to SQL injection. If the search term comes fro …
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 …
0
votes

Delphi Objects in Packages

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