2008-10-31 21:18:20 +00:00
|
|
|
unit EXPROTU;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2023-02-20 17:36:51 +00:00
|
|
|
SysUtils, Classes, Controls, Forms, Dialogs, StdCtrls, Buttons, ExtCtrls,
|
2023-02-23 13:55:39 +00:00
|
|
|
ogproexe;
|
2008-10-31 21:18:20 +00:00
|
|
|
|
|
|
|
type
|
2023-02-17 16:28:47 +00:00
|
|
|
|
|
|
|
{ TForm1 }
|
|
|
|
|
2008-10-31 21:18:20 +00:00
|
|
|
TForm1 = class(TForm)
|
2023-02-17 16:28:47 +00:00
|
|
|
Bevel1: TBevel;
|
2008-10-31 21:18:20 +00:00
|
|
|
CloseBtn: TBitBtn;
|
2023-02-20 11:17:45 +00:00
|
|
|
Info: TLabel;
|
2008-10-31 21:18:20 +00:00
|
|
|
StatusLbl: TLabel;
|
|
|
|
OgProtectExe1: TOgProtectExe;
|
|
|
|
procedure OgProtectExe1Checked(Sender: TObject; Status: TExeStatus);
|
|
|
|
private
|
|
|
|
{ Private declarations }
|
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
Form1: TForm1;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2023-02-20 17:36:51 +00:00
|
|
|
{$R *.lfm}
|
|
|
|
|
2008-10-31 21:18:20 +00:00
|
|
|
procedure TForm1.OgProtectExe1Checked(Sender: TObject; Status: TExeStatus);
|
|
|
|
begin
|
2023-02-23 13:55:39 +00:00
|
|
|
StatusLbl.Caption := ExeStatusToStr(Status);
|
2008-10-31 21:18:20 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
end.
|