同意 沈前卫!
不过这时你的程序连Ctrl+Alt+Del也关不掉了,
你可以新建一个口令对话框(用File|New|Dialog), 在OnCloseQuery的时候检查口令:
procedure TForm1.FormCloseQuery(Sender: TObject;
var CanClose: oolean);
begin
if PasswordDlg.ShowModal=mrOK then
if PasswordDlg.Password.text = 'netbuff' then
CanClose:=true
else
CanClose:=false;
end;
这样又可以关闭了!