Zitat von
mkinzler:
Setzte mal
Application.ShowMainForm := False;
im Projekt
Meintest du vielleicht MainFormOnTaskbar?
Besser ist es das Application.Handle in ein WS_EX_TOOLWINDOW zu verwandeln.
Delphi-Quellcode:
uses
Windows;
begin
Application.Initialize;
SetWindowLong(Application.Handle, GWL_EXSTYLE,
GetWindowLong(Application.Handle, GWL_EXSTYLE) or WS_EX_TOOLWINDOW);
// Splashscreen und CreateForm() Aufrufe erst ab hier...
...