Borland Package Library - special kind of object-oriented DLL with enforced type-safety

learn more… | top users | synonyms

3
votes
1answer
78 views

tool to show bpl entry points?

Trying to see why we're getting "entry point not found" when I know it should be in there. Aside from the map, is there a tool that'll "explore" a .bpl or .dll and show the entry points?
1
vote
0answers
136 views

Borland C++ BCB 5 - EAccessViolation DynamicArray Array too large

I am using BCB 5 and I have a DynamicArray that works perfectly under normal conditions, but recently i have been forced to use it for a large dataset(About 7000 items) and my exception handler throws ...
2
votes
3answers
260 views

Can We use dcu (Delphi compiled unit) at runtime?

Can we use dcu an runtime like dll? For example, show form that compiled in dcu file. I have the question because i want to develop plugginable application. As Delphi programmer, as far as i know, i ...
0
votes
1answer
223 views

Build project package C++ Builder

I have written a GUI forms application in C++ Builder and am wanting to be able to run the .exe on another computer. I am getting some .bpl errors when trying to run the .exe on another computer. ...
3
votes
1answer
1k views

Solving Delphi BPL Package problems where BPLs won't load but you've already recompiled (Windows VirtualStore filesystem issue)

My general question is how do you troubleshoot "My BPL won't load due to a dependency that just won't go away, no matter how much I clean up and recompile". Update You may think you have a clean ...
0
votes
1answer
297 views

Delphi XE not finding a BPL

I'm having trouble in Delphi XE, I have a project which uses QRDesign (part of QuickReports). The error I'm getting when I view a unit that uses QRDesign is: "The program can't start because ...
6
votes
3answers
374 views

Get list of required BPLs for a given DLL, EXE or BPL

I'm wondering if anyone knows of an elegant way of determining what BPLs are required by a given (compiled) DLL, EXE or BPL. I'm not sure if this is even possible shy of simply scanning the binary ...
3
votes
0answers
162 views

How to obtain Components Name from a bpl on my standalone app

Classes.GetPackageInfo can enumerate all the units and required packages for a package. But I want a Proc like : procedure GetPackageComponents(ModuleName: PChar; ComponentsList: TStrings); which ...
1
vote
0answers
189 views

Delphi XE Datasnap: Server methods missings when DSServerModule is load dynamically

I have Datasnap Server (DBX) that scans at startup a directory, loads the BPLs (containing the DSServerModules) and then registers them in order make them available from remote. It all works fine for ...
6
votes
5answers
1k views

Delphi App has “No Debug Info” when Debugging

We have built an application that uses packages and components. When we debug the application, the "Event Log" in the IDE often shows the our BPLs are being loaded without debug information ("No ...
13
votes
3answers
556 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 ...
5
votes
2answers
500 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 ...
0
votes
1answer
216 views

Project settings for building release .exe that run on all machines

I am prototyping a user interface using C++Builder XE2. I need this project to run on all Windows PCs, whether they have developer tools installed or not. How can I get all the required libraries to ...
0
votes
1answer
2k 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 ...
2
votes
2answers
636 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 ...
3
votes
1answer
293 views

Borland C++: cannot dynamically link to components in a custom bpl (solved)

While drafting the following post I found a solution, but I thought it might be still worthwhile to post here for reference. See solution below. In RAD studio (C++), I have a project group with ...
5
votes
2answers
372 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 ...
10
votes
2answers
683 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 ...
9
votes
4answers
888 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 ...
0
votes
0answers
53 views

Stubborn Borland VCL designer inserts incorrect #include statement

I'm working with Borland C++ 2007. My project group consists of a package and several projects that use a component within that package. When I use this component using the design editor, the IDE ...
4
votes
1answer
460 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 ...
2
votes
2answers
1k 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
284 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
875 views

How to update a Borland 6 C++ Project from including indy.bpi to indy60.bpi?

I develop with Borland Builder 6 in C++. And when I click on "Components" / "Installer des paquets", I see the Package dclIndy60.bpi : "Internet Direct (Indy) for D6 Property and Component Editors", ...
0
votes
5answers
2k 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
443 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 ...
2
votes
2answers
529 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 ...
1
vote
1answer
631 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.
0
votes
1answer
1k 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 ...
1
vote
2answers
664 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 ...
11
votes
5answers
1k 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 ...
2
votes
1answer
2k 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 ...
3
votes
6answers
3k 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 ...
1
vote
3answers
695 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
3answers
409 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 ...
3
votes
2answers
369 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)
3
votes
4answers
923 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 ...
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 ...
8
votes
2answers
413 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 ...
18
votes
5answers
5k 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 ...
3
votes
1answer
925 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 ...
6
votes
5answers
3k 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 ...
2
votes
5answers
1k views

Getting BPL Versions at program startup

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 ...