Tagged Questions

2
votes
5answers
145 views

Loading a Delphi Object Run Time using BPL

I have a class in a unit. Usually, when I changed the algorithm of its methods, I have to recompile it and deliver the patch as a whole. I think to create the instance of the class …
1
vote
3answers
74 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 …
3
votes
2answers
72 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)
0
votes
3answers
61 views

Loading BDE BPL from another directory

Using Delphi 2010 and a patched version of the BDE I run into a problem loading the BDERTL140.bpl. Loading DCLBDE140.bpl from another directory then usual works fine. Only when I …
1
vote
3answers
109 views

Delphi - unmangle names in BPL’s

Is it possible to unmangle names like these in Delphi? If so, where do I get more information? Example of an error message where it cannot find a certain entry in the dbrtl100.bpl …
6
votes
2answers
245 views

How do I call Delphi functions in a bpl from an executable?

I have a Delphi application that I have written a fairly simple wrapper .exe for. Basically, there was a dll that had a bunch of functions, one of which I would call iteratively …
7
votes
2answers
230 views

Delphi: .exe with built-in packages: 600kb, .exe + external BPLs: 6MB. Why is that?

Hi, if I compile .exe file in delphi with built-in packages, it generates about 600kb EXE file. However if I compile it with runtime packages, the sum of sizes (.exe + all require …
7
votes
5answers
615 views

Plugins system for Delphi application - bpl vs dll?

Hi, I'm writing delphi app which should have capability of loading plugins. I'm using JvPluginManager as plugin system/manager ;) Now, in the new plugin wizard they say it's bette …
2
votes
1answer
184 views

Delphi - .bpl plugins for application - problem while loading > 1 plugin.

Hi, I'm using TJvPluginManager to build simple application with ability to load .bpl plugins. I have common interfaces declaration in "uIntfs.pas" file, which is kind of SDK ;) …
4
votes
5answers
833 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 shou …
1
vote
5answers
378 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 …