How to Disable the Ctrl + Alt + Delete Shortcut

Posted December 15th @ 8:53 pm by m3Rlin

For some reason you may want your program to disable the Ctrl + Alt + Delete shortcut. To do so you can use this code.
!!Note: This code will only work on Windows 9x and ME. This function on Windows NT systems (NT, 2000, XP or Vista) will have NO effect.

uses
Windows;

procedure DisableCtrlAltDel;
var
[...]

How to Delete Files with the Ability to Recycle

Posted December 15th @ 6:47 pm by m3Rlin

If you want to delete a file and have the ability to recycle it you should better forget about low-level functions such as DeleteFile(). You need to use the Shell API functions in order to use the recycle bin. This is because deleting files with the use of the recycle bin is not just moving [...]