Registriert seit: 20. Jan 2006
Ort: Lübbecke
11.453 Beiträge
Delphi 12 Athens
|
Re: Anwendung beim Windows-Start ausblenden ?
8. Jan 2009, 14:04
Sowas in der Art könnte auch ganz hilfreich sein:
Delphi-Quellcode:
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
if Paramstr(1) = 'nebenuhrbinich' then begin
Application.ShowMainForm = False;
Form1.Visible := false;
end
else
Form1.Caption:=Paramstr(1);
Application.Run;
end.
Uwe Raabe
|