//先把Application.ShowMainForm设为False
//阻止自动把MainForm显示出来
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.ShowMainForm := False;
Application.Run;
end.
//用Timer或其他机制在你想显示的时候Show出MainForm来
procedure TForm1.Timer1Timer(Sender: TObject);
begin
Show;
end;