Hi everybody. I am now working on some intrusting project. I need smaller versions of these delphi components(WinInet, Windows, SysUtils). Because i need to reduce my projects size. maybe someone know where to get it?
Sory for bad english.
Hi everybody. I am now working on some intrusting project. I need smaller versions of these delphi components(WinInet, Windows, SysUtils). Because i need to reduce my projects size. maybe someone know where to get it?
Sory for bad english.
@ n0v4
how big is your file at the minute?
are you using console app?
is it the server file which you are tring to make smaller?
00101101 01110011 01101001 01101100 01100101 01101110 01110100 00101101
1st of all, drop VCL if your using it and code the server in api. you will end up around 13kb.
then, if you really want to make it small. code a stub for it which compresses the size with eg zip or whatever, then pack your application. you will end up around 6-7 kb if ur stub code is good
Hi Thanx for your replies. I am making keylogger it's a dll and it's size is 53KB when i compile it. When I pack it with aspack it goes 33KB. But i think there must be a way to make it smaller.
Of course the windows.pas is the basic unit for any program; however, for the SysUtils.pas you can copy the functions you need and maybe remove others and wrap it up into a new lite unit ...
Example - Getting the StrToInt function out of SysUtils.pas into your project - :
Code:function StrToInt(S: string): integer; begin Val(S, Result, Result); end;
There are currently 1 users browsing this thread. (0 members and 1 guests)