Any questions? Ask us: support@enigmaprotector.com

Help

Manual
Additional
Manual

Delphi Examples

The sources below will guide you on how to create a simple application displaying a "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\Trial protection part 1\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.