Könnte man auch etwas kompakter so erledigen:
Delphi-Quellcode:
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(TfrmIntro, frmIntro);
// eventuell noch weitere Forms erstellen
frmIntro.ShowModal;
Application.Run;
end.