den noch so unwichtigen Projektquelltext kriegste so:
Delphi > Projekt > Quelltext anzeigen
Und so sollte es dann aussehen:
Delphi-Quellcode:
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.ShowMainForm := false; // Guck mal :D
Application.CreateForm(TForm1, Form1);
Application.Run;
end.