How best to add Plugin Capability to a Delphi program

前端 未结 9 2070
时光说笑
时光说笑 2020-12-23 08:52

I am looking to add the capability for users to write plugins to the program I have developed in Delphi. The program is a single executable with no DLLs used.

This

9条回答
  •  心在旅途
    2020-12-23 09:07

    The most universal method of adding plug-in capability is to use COM. A good book to get you started on the road is Delphi Com Programming by Eric Harmon. While it was originally written for Delphi versions 3 through 5, the books contents are still valid with the latest versions of Delphi.

    Personally, I have used this technique along with active scripting to allow end user customization.

提交回复
热议问题