procedure TForm1.DisAgreenClick(Sender: TObject);
begin
close;
end;这样 这个按钮的CLOSE可以关闭程序为什么下面这个if 里面的就不能关???Delphi的if else怎么了?!?!?!?!?!!
procedure TForm1.FormCreate(Sender: TObject);
begin
if FileExists(ExtractFilePath(Application.ExeName)+'line.exe')
then
else
begin
ShowMessage('请把我放在app的目录下,这个位置不对!');
close;  // 就是这句!!!为什么不执行它??????????
end;end;