본문 바로가기
Application/Delphi Lecture

시작 프로그램 등록

by 현이빈이 2008. 8. 13.
반응형
uses
Registry;
procedure -----------------
var
Reg          : TRegistry;
begin
Reg := TRegistry.Create;
Reg.RootKey := HKEY_LOCAL_MACHINE;
Reg.OpenKey('Software\Microsoft\Windows\CurrentVersion\Run',
               true);
Reg.WriteString('Test', Application.ExeName);
Reg.CloseKey;
end;

레지스트리 'Software\Microsoft\Windows\CurrentVersion\Run 여기다가 등록시키면
될겁니다..허접의 답변입니다..
반응형