How to Create a Screen Saver

Posted December 15th @ 7:35 am by m3Rlin

A screen saver is really just a Windows program. Screen savers can be divided into two types: full screen and effects. The first type has a bsNone border style, the form is usaully (not always, though) has a black background it’s maximized. They always have the fsStayOnTop form style. The second type is harder to [...]

How to Programmatically Make Your Programs Run on Windows Startup

Posted December 15th @ 7:32 am by m3Rlin

To easiest way to make your programs run on Windows startup is to make an entry in the system registry.
To make you program run on all user profiles you have to change the RootKey variable to HKEY_LOCAL_MACHINE else don’t change it, HKEY_CURRENT_USER is set by default.
If you want your program to run only once [...]