Manual
Delphi ExamplesThe sources below will guide you how to create a simple application displaying the "Hello World" message after execution. Note: the functionality of the module should not be changed after protection. The full sources of the current project are located in the "Tutorials\Simple envelope protection\Delphi\" folder. program test; {$APPTYPE CONSOLE} uses Windows, SysUtils; begin MessageBox(0, 'This is The Enigma Protector test application.'#10#13 + 'If after protection you will see this message then the application works correctly!', 'Test Application', 0); end. |