Ja, versucht habe ich das
Delphi-Quellcode:
begin
Application.Initialize;
If ParamStr(1) = 'open' then begin
Application.CreateForm(TNebenformular, Nebenformular);
end else begin
Application.CreateForm(THauptformular, Hauptformular);
end;
Application.Run;
end.
auch schon, aber sobald ich mit 'if' arbeite kommt die Meldung:
'Der Aufruf von Application.CreateForm fehlt oder ist nicht korrekt!'
Evtl. liegt das ja auch an meiner Delphiversion (D5).