Tagged Questions

15
votes
5answers
4k views

Plugins system for Delphi application - bpl vs dll?

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 better to use .bpl type ...
11
votes
2answers
192 views

Package (BPL) Automatic Naming Suffix

I write a lot of components and libraries for Delphi, most of which require the use of BPL Packaging so that they may be installed into the IDE. This is simple enough and works well, right up until ...
10
votes
2answers
304 views

The best approach to modular programming in Delphi

this is a continuation of the discussion I started here. I would like to find the best way to modularize Delphi source code as I'm not experienced on this field. I will be gratefull for all your ...
10
votes
5answers
849 views

Delphi plugin framework

I want to design Delphi plugin framework. There are three options: 1. DLL 2. BPL 3. COM interface Every option has some disadvantage. DLL - Promblem with MDI apllication, forms from plugin cannot be ...
8
votes
4answers
421 views

How to divide a Delphi project into BPLs properly?

The company I work for develops a system in Delphi, that contains dozens of exe modules, and each of them is identical to a certain degree if it comes to source code. Sadly, nobody has ever cared ...
8
votes
2answers
343 views

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

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 required .BPLs) is about 6-8 MB ...
6
votes
3answers
1k 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 once my wrapper did ...
5
votes
2answers
205 views

Access to public methods and properties inside a Delphi BPL

I have an application that loads a BPL that as inside a simple form. This form is an optional option of the main application. The BPL loads correctly, the form is shown correctly, but I don’t know ...
5
votes
2answers
175 views

External modules implementation

What is the best way to implement an external module system for a DELPHI application? What I need is very basic really: The main APP detects if a module is present and loads it(Run time) Modules ...
4
votes
5answers
2k 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't they be ...
3
votes
1answer
238 views

How to extract a resource from within a BPL?

If I've got a resource in an EXE and I want to extract it, it's pretty simple. Something like: stream := TResourceStream.Create(HInstance, ResourceName, RT_RCDATA); This works because the global ...
3
votes
2answers
230 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)
2
votes
2answers
225 views

How to fix bpl loading issue in Delphi XE while opening a project?

Very often when I try to open any project in Delphi XE the following issue raises for a few popular bpl-packages: Can't load package "Name1.bpl". Component "Name2" can't be registered by package ...
2
votes
2answers
366 views

How do I make my program use less memory when built with runtime packages?

I always compile my delphi apps without 'build with runtime packages', but for my latest Project i had to use it (as it started swelling day by day ) . I use some third party VCL (TMS component pack ...
2
votes
6answers
2k 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 using DLL. After ...
2
votes
4answers
583 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 I want to know ...
2
votes
1answer
569 views

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

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 ;) The problem is, that if ...
2
votes
5answers
811 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 there ...
1
vote
2answers
399 views

Dynamically loaded BPL's sharing code / passing objects

I was toying around with the idea of using dynamically loading BPL's and passing object instances from the main app to a method in a BPL. This poses a problem units between used by the application and ...
1
vote
1answer
103 views

External modules security

I am developing some external modules for an application. These modules are BPL files and if present in the application folder the application loads them and uses whatever is available inside. How ...
1
vote
1answer
334 views

Load Tframe from bpl to application

I am trying to load a tframe inside a delphi package (bpl) to be shown in my main app please give me code for both package and application.
1
vote
2answers
356 views

How to use Delphi Dlls without enabling Build with runtime packages

Recently i started a project with so many forms , frames and extra controls, so my application was swelling up and i am using 3 exes in my projects(all made in Delphi 2009) and these applications are ...
1
vote
1answer
933 views

rtl100.bpl was not found?

I am learning a component from TMS. I got "...rtl100.bpl was not found...". probably this error was happened if I use "Build with runtime packages" that contains "rtl". Where is rtl100.bpl (I am ...
1
vote
3answers
413 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 Text about the ...
0
votes
1answer
381 views

Delphi XE2 Cannot get BPL plugin work

I tried to implement a simple module system with XE2 but couldn't get it to work. When I try to run it under IDE, I can get a handle from LoadPackage() but cannot get the class with GetClass() (even ...
0
votes
5answers
724 views

BPL File needs Run-Time Packages !

I have created a Package and i want to use the BPL File of my Package ... My Package have VCL.dcp and RTL.dcp as Required libraries , i load this Package in my application without any errors but when ...
0
votes
1answer
200 views

Load Frames from packages

I have three frames inside separate three bpls, in my main application i have created three buttons and , i want to call the frames dynamically(one at a time )when the respective button is clicked ...
0
votes
1answer
521 views

delphi exe and dll without build with runtime packages

For my last project i was using many frames in my delphi application ,so i dicided to create dlls and put them inside the dlls(ALL created in Delphi) i have gone through many websites and came up ...
0
votes
3answers
303 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 want to load the ...