Hallo
Vielleicht ist es besser, die Überprüfung bereits in der Projekte-Datei vorzunehmen.
Delphi-Quellcode:
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
if not Bedingung then Exit;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.