Search Results

1
vote
5answers
392 views

Getting BPL Versions at program start.

Is it possible to check what version of BPL (ie Rtl70.BPL, Indy70.bpl etc) are installed on a clients computer when the program starts? I have had some programs crash because the BPL on the …
4
votes
5answers
868 views

Delphi Project Needing runtime Packages, even with runtime Packages off.

My Delphi7 project will not run on my clients computer if i don't have a few of the runtime packages in the path. eg rtl70.bpl I have Build with runtime packages unticked, so shouldn …
3
votes
2answers
75 views

Get BPL File Name

From within a BPL, is it possible to get its own file name? e.g. C:\foo\bar.bpl (dynamically loaded and delphi7, if it matters) …
1
vote
3answers
77 views

Returning a string from a BPL function

have a function, simplified below, that is exported from a BPL function DoA(amount: currency; var Info: string): Currency; stdcall; begin result := amount * 19; Info:= 'Some Te …
0
votes

Delphi Objects in Packages

i didnt read all the notes at http://stackoverflow.com/questions/702246/loadpackage-call …