在Delphi7 中,在Form的Create方法为:procedure TForm1.FormCreate(Sender:TObject);
begin
  ShowMessage('Starting..');
  close;
end;为什么显示了启动信息后,程序不关闭(不执行close语句),试过多次也是这样。