Ich hab auch immer wieder Probleme damit. Gehabt. Mittlerweile mach ich das so im Hauptprogramm
Delphi-Quellcode:
Begin
Application.Initialize;
If ParamStr(1)='EINGABE' Then
With TEingabeformular.Create(nil) Do Begin
ShowModal;
Release;
End
Else Begin
Applicatio.CreateForm(TMainForm, MainForm);
Application.Run;
End;
End.