 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Anilkumar C Jadhav Guest
|
Posted: Mon Oct 16, 2006 1:36 pm Post subject: Program Built using C++Builder6 professional edition does no |
|
|
My exe file doesnot run on other computer... How do I distribute my program to other users..?
Whenever I run this exe program on ther machine I get error message saying
vcl60.bpl not found..
what compile options I should choose, while making a exe..
Pls reply.. |
|
| Back to top |
|
 |
Ed Mulroy Guest
|
Posted: Mon Oct 16, 2006 11:41 pm Post subject: Re: Program Built using C++Builder6 professional edition doe |
|
|
The default configuration when you create a project is to create it as
dynamic linked. That means the code you use that is in the runtime
libraries and packages which are already on your machine do not have to be
duplicated in your EXE file so the file is much smaller.
An alternative is to create it as static linked. That will bundle the code
you use from those libraries into the EXE file, making it larger but
removing the requirement that you install those runtime library DLL's and
packages on the target machine.
To switch to static linked:
Select Project|Options
Click on the Linker tab
Uncheck Use dynamic RTL
Click on the Packages tab
Uncheck Build with runtime packages
Click Ok
Select Project|Build to rebuild in this new configuration
.. Ed
| Quote: | Anilkumar C Jadhav wrote in message
news:33192616.1161005824501.JavaMail.SYSTEM@USSVS-TECHWEB1...
My exe file doesnot run on other computer... How do I distribute
my program to other users..?
Whenever I run this exe program on ther machine I get error
message saying vcl60.bpl not found.. what compile options I should
choose, while making a exe.. |
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|