|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 丿Clover灬夢 于 2013-9-26 00:05 编辑
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Grids, Registry, Menus;
type
TForm1 = class(TForm)
JStrGrid: TStringGrid;
PopupMenu: TPopupMenu;
cmdAdd: TMenuItem;
cmddelete: TMenuItem;
procedure FormShow(Sender: TObject);
procedure cmdAddClick(Sender: TObject);
procedure cmddeleteClick(Sender: TObject);
procedure JStrGridMouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
procedure FormCreate(Sender: TObject);
private
procedure readkey(root: string; IRowcount: Integer);
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
reg: Tregistry;
canadd: Boolean;
arow: Integer;
implementation
uses
Unit2;
{$R *.dfm}
procedure TForm1.readkey(root: string; IRowcount: Integer);//读取启动项
var
ttt: Tstringlist;
i: integer;
rrr, qqq: string;
begin
qqq := '\Software\Microsoft\Windows\CurrentVersion\Run';
ttt := Tstringlist.Create;
reg := Tregistry.create;
try
if root = 'HKEY_Local_Machine' then
reg.RootKey := HKEY_Local_Machine;
if root = 'HKEY_Current_User' then
reg.RootKey := HKEY_Current_User;
if reg.OpenKey('\Software\Microsoft\Windows\CurrentVersion\Run',false) then
begin
reg.GetValueNames(ttt); //获取当前键下所有的键值列表。
JStrGrid.RowCount := ttt.Count + IRowcount;
for i := 0 to ttt.Count - 1 do
begin
JStrGrid.Cells[1, i + IRowcount] := ttt[i];
//ShowMessage(ttt[i]);
rrr := reg.ReadString(ttt);
//ShowMessage(rrr);
JStrGrid.Cells[2, i + IRowcount] := rrr;
JStrGrid.Cells[3, i + IRowcount] := qqq;
JStrGrid.Cells[4, i + IRowcount] := root;
end;
end;
finally
reg.CloseKey;
reg.Free;
ttt.Free;
end;
end;
procedure TForm1.FormShow(Sender: TObject);
var
i: Integer;
begin
readkey('HKEY_Local_Machine', 1);
readkey('HKEY_Current_User', JStrGrid.RowCount);
for i := 1 to JStrGrid.RowCount - 1 do
begin
JStrGrid.Cells[0, i] := IntToStr(i);
end;
end;
procedure TForm1.cmdAddClick(Sender: TObject);
begin
with TForm2.Create(nil) do
begin
try
ShowModal;
finally
Free;
end;
end;
Form1.OnShow(nil);
if canadd then
MessageBox(Handle, '启动项添加成功', '提示', MB_OK or MB_ICONWARNING);
end;
procedure TForm1.cmddeleteClick(Sender: TObject);
var
ireg: TRegistry;
ValueName: string;
begin
if Application.MessageBox('是否删除该启动项', '提示', MB_YESNO +
MB_ICONQUESTION + MB_DEFBUTTON2) = IDNO then Exit;
iReg := TRegistry.Create;
try
with iReg do
begin
if JStrGrid.Cells[4, arow] = 'HKEY_CURRENT_USER' then
RootKey := HKEY_CURRENT_USER;
if JStrGrid.Cells[4, arow] = 'HKEY_Local_Machine' then
RootKey := HKEY_Local_Machine;
if OpenKey('Software\Microsoft\Windows\CurrentVersion\Run', False) then
begin
ValueName := JStrGrid.Cells[1, arow];
if ValueExists(ValueName) then
DeleteValue(ValueName);
ValueName := ValueName + '1';
if ValueExists(ValueName) then
DeleteValue(ValueName);
end;
CloseKey;
end;
finally
iReg.Free;
end;
MessageBox(Handle, '启动项删除成功', '提示', MB_OK or MB_ICONWARNING);
Form1.OnShow(nil);
end;
procedure TForm1.JStrGridMouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
var
acol: Integer;
begin
with JStrGrid do
begin
MouseToCell(x, y, acol, arow);
end;
//ShowMessage(IntToStr(arow));
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
Application.Title := '开机启动项';
JStrGrid.Cells[0, 0] := '序号';
JStrGrid.Cells[1, 0] := '启动项名称';
JStrGrid.Cells[2, 0] := '启动程序';
JStrGrid.Cells[3, 0] := '所在键';
JStrGrid.Cells[4, 0] := '根键';
end;
end.
[/i][/i][i][i]unit Unit2;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, ExtCtrls, Registry;
type
TForm2 = class(TForm)
pnlPanel: TPanel;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
btnopenexe: TSpeedButton;
edtName: TEdit;
cmb: TComboBox;
edtExe: TEdit;
btnOK: TBitBtn;
btnCancel: TBitBtn;
OpenDialog: TOpenDialog;
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure btnOKClick(Sender: TObject);
procedure btnopenexeClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form2: TForm2;
implementation
uses Unit1;
{$R *.dfm}
procedure TForm2.FormClose(Sender: TObject; var Action: TCloseAction);
begin
Action := caFree;
Form2 := nil;
end;
procedure TForm2.btnOKClick(Sender: TObject);
var
hKey: string;
hReg: TRegIniFile;
begin
hReg := TRegIniFile.Create('');
//TregIniFile类的对象需要创建
if cmb.ItemIndex = 0 then
begin
hReg.RootKey := HKEY_LOCAL_MACHINE;
end;
if cmb.ItemIndex = 1 then
begin
hReg.RootKey := HKEY_LOCAL_MACHINE;
end;
//设置根键
hReg.WriteString('Software\Microsoft\Windows\CurrentVersion\Run'
+ hKey + #0,
edtName.Text,
//程序名称,可以为自定义值
edtExe.Text );
//命令行数据,必须为该程序的绝对路径+程序完整名称
hReg.destroy;
//释放创建的hReg
unit1.canadd := True;
end;
procedure TForm2.btnopenexeClick(Sender: TObject);
begin
if OpenDialog.Execute then
edtExe.Text := OpenDialog.FileName;
end;
end.
[/i][/i]
|
|