Registriert seit: 19. Jun 2006
647 Beiträge
Delphi 11 Alexandria
|
AW: Ich krieg mein Fenster nicht automatisch aktiv.
25. Feb 2021, 18:57
Warum machst du es nicht einfach so im DPR:
Delphi-Quellcode:
Application.Initialize;
Application.MainFormOnTaskbar := True;
//Application.MainFormOnTaskbar := False;
frmSplash := TfrmSplash.Create(nil);
try
frmSplash.Show;
Application.CreateForm(TfrmDesktop, frmDesktop);
finally
frmSplash.Free;
end;
Application.Run;
|