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 ...
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 ...
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 ...
0
votes
1answer
379 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 ...