tags:

views:

660

answers:

2

I don't know how create application to run on comp with no instaled borland builder software

A: 

Your application will no doubt be relying on files (dlls, bpls etc) that are not present on the host machine. The best thing to do is use a tool like InstallShield to create an installer that will package up all the files your application requires to run and store them in the relevant directories. If you are using visual components i.e. Forms application, you will probably be missing the VCL files.

James
+3  A: 

You need to go into the Project Options and disable the "Use dynamic RTL" setting in the Linker section, and disable the "Build with runtime packages" setting in the Packages section.

Remy Lebeau - TeamB

related questions