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 stud开发者_运维百科io 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.
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...
精彩评论