Very often when I try to open any project in Delphi XE the following issue raises for a fe开发者_开发问答w popular bpl-packages:
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.
What is the best way to implement an external module system for a DELPHI application? What I need is very basic really:
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 abou
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);
I am developing some external modules for an application. The开发者_如何学Cse modules are BPL files and if present in the application folder the application loads them and uses whatever is available
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 (t
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
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 want to design Delphi plugin framework. There are three options: 1. DLL 2. BPL 3. COM interface Every option has some disadvantage.