What is needed to run a Delphi 4 program

0

When running a java program I would have to have the jre in the path/installed
What is the equivalent in Delphi 4? is there any run-time to it?

JavaSheriff

Posted 2017-05-23T00:59:08.560

Reputation: 150

Question was closed 2017-05-24T11:43:15.520

Answers

1

Delphi 4 programs are compiled to native code and run in Windows without a runtime engine (such as .NET and Java use). It may require additional resources such as libraries (DLL's), but that is specific to each application.

DrMoishe Pippik

Posted 2017-05-23T00:59:08.560

Reputation: 13 291