一个简单的delphi表单应用程序是否需要任何库或依赖项来部署?
我需要编写一个简单的表单应用程序,并且希望使其易于部署(无需安装库或依赖项),我不想使用 Visual Studio cpp 或 csharp,因为 clr 应用程序使用 .net 框架进行编译,而我没有太多使用 MFC 和对话框的经验。
所以我想知道简单的 delphi vcl 表单应用程序(使用 TForm 的应用程序)使用哪些库,因为我从来不需要安装任何东西来运行简单的 delphi 应用程序。
I need to code a simple form application and I want to make it easy to deploy (without installing libraries or dependencies), I don't want to use visual studio cpp or csharp because clr apps compile with .net frameworks and I have no much experience with mfc and dialogs.
So I was wondering which libraries does a simple delphi vcl forms app (those using TForm) use, because I've never had to install anything to run simple delphi apps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Delphi 将所有内容嵌入到 EXE 文件中。有些库依赖于 BPL 或 DLL 文件,但对于简单的应用程序,EXE 就足够了......
Delphi embeds everything in the EXE file. There are libraries that depend on BPL or DLL files, but for a simple application, the EXE is all you need...