This is a game made in Delphi. It is like your typical memory game
in which there are a bunch of buttons on the screen which hide different
images. The images are in pairs. You have to uncover 2 images of
the same pair one after the other so that the buttons hiding them
disappears. The object of the game is to make all the buttons disappear
in the least possible time. Note: This program's interface and comments are in Spanish. However
the actual code is in English.
StripReloc is a free command line utility that removes
the relocation (".reloc") section from Win32 PE EXE files,
reducing their size. Most compilers/linkers put a relocation section
in EXE files, but this is actually not necessary since EXEs never
get relocated. Hence, a relocation section only wastes space.
This program is designed for developers to run on their own applications'
executables only. It is not recommended that you run StripReloc
indiscriminately on all EXEs you come across, because certain programs
may rely on their internal structure staying intact. Full source
code is included.
This is an example of making an application without using the Forms
unit. Forms.pas is the Delphi unit that makes your programs so large
(~300KB). Forms.pas has all the code for translating the forms you
create with Delphi w/components into windows. With this program's
code you are able to make applications as small as 20Kb.
This program creates thumbnails of jpeg images in delphi 5. It
allows you to choose the picture, set the desired size, and there
you get your thumbnailed version.
Inno Setup is a application packaging software
made in Delphi 2.0. It will work with higher versions as well though.
It is a scriptable installation system and has a wizard which allows
you to make installers very easily. To view an example of a setup
made using this software then please download the SysInfo setup
found on the downloads page
of the site. Also, please visit the program's official site at http://www.jrsoftware.org/