Firstly, wikipedia defines a Control Panel Applet as:
graphical user interface which allows users to view and manipulate
basic system settings and controls via applets
Is this correct?
Secondly, what is the difference between a VCL application and a Control Panel applet in terms of functionality. Is it easier to change basic system settings using a CP Applet compared to a VCL application?
A control panel applet is a DLL that meets certain criteria to display within the Windows Control Panel. (See the MSDN documentation for CPlApplet() for details.) So the answer to your first question is no, that definition is not correct, and the answer to the second is: A VCL Forms application is a standard Windows application based on the Delphi VCL, and a Control Panel Applet is a DLL that is designed to be loaded into the Windows Control Panel application (you’ll find it with
Start->Control Panelon most Windows versions since Win95).According to this CodeProject article: