不好意思问了那么多问题!但我还是有问题,怎么把我的程序写在开机自动运行里呀,我知道写在那个键里,但不会用程序写呀!!(在线等)(0分)

  • 主题发起人 主题发起人 cntiny
  • 开始时间 开始时间
uses Registry;
procedure AutoStart;
var
Reg: TRegistry;
begin
Reg := TRegistry.Create;
Reg.RootKey := HKEY_LOCAL_MACHINE;
Reg.OpenKey('SOFTWARE/Microsoft/Windows/CurrentVersion/Run', True);
Reg.WriteString(Application.Title, Application.ExeName);
Reg.CloseKey;
Reg.Free;
end;

 
真是太感谢了大哥!!
5555555
 
后退
顶部