Hallo
Ich habe Delphi XE und versuche den Fenster Button in der Taskbar zu verstecken
bis Delphi 2006 war das ja kein Problem.
Ich habe das probiert nach
http://delphi.about.com/od/delphitip...taskbutton.htm
Delphi-Quellcode:
Application.Initialize;
Application.MainFormOnTaskbar := false;
Application.Title := 'Test';
Application.ShowMainForm := true;
Application.CreateForm(TForm1, Form1);
Application.Run;
und das
http://www.delphipraxis.net/145490-m...ar-button.html
und noch mehr.
Hat jemand eine Idee wo mein Denkfehler liegt.