Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does a simple delphi form app needs any libraries or dependencies to deploy?

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.

like image 498
peterg Avatar asked May 15 '10 14:05

peterg


1 Answers

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

like image 117
Sparky Avatar answered Sep 27 '22 21:09

Sparky