Board index » delphi » Reduce EXE filesizes?

Reduce EXE filesizes?

Every time I cmpile a delphi program I have created, it usually ends
up being around 250k+, even for a basic program.

How can I reduce the EXE filesize.

I am a Delphi 1 user,

Barry
Reply via e-mail if possible    
Start your day with a quote!
http://www.therightside.demon.co.uk/quotes/groucho/index.htm

 

Re:Reduce EXE filesizes?


Quote
RBJ wrote:

> Every time I cmpile a delphi program I have created, it usually ends
> up being around 250k+, even for a basic program.

> How can I reduce the EXE filesize.

  Two ways:  Optimize your code, or ONLY use the WinAPI (no VCL).

  The price you pay for using Delphi's speed, is it's size of the
application (which, all things considered, aren't that bad...)

--
Jason Wallace
SL Software
Dark...@SLSoftware.reno.nv.us
--
"We are MicroSoft.  You will be assimilated.  Resistance is Futile."
--

Re:Reduce EXE filesizes?


Make sure that both of the following check boxes are unchecked in the
IDE:

Project|Options|Linker|EXE and DLL Options|Include TDW debug info.
Tools|Options|Library|Options|Compile with debug info.

Both increase the size of your DCU files and/or EXE files.

Re:Reduce EXE filesizes?


Quote
rbjo...@therightside.demon.co.uk (RBJ) wrote:
>Every time I cmpile a delphi program I have created, it usually ends
>up being around 250k+, even for a basic program.

>How can I reduce the EXE filesize.

You could also use Shrinker.

http://www.zaccatalog.com/delphi/PRODUCTS/4628.HTM

Sean Cunningham
MSI Consulting Group
www.msiconsulting.com

Re:Reduce EXE filesizes?


Get pklite for windows.

Other Threads