Hallo,
Man kann ja bei seinem Programm den Eintrag aus er Taskleiste entfernen:
Delphi-Quellcode:
procedure TForm1.FormCreate(Sender: TObject);
begin
ShowWindow( Application.Handle, SW_HIDE );
SetWindowLong( Application.Handle, GWL_EXSTYLE,
GetWindowLong(Application.Handle, GWL_EXSTYLE) or
WS_EX_TOOLWINDOW and not WS_EX_APPWINDOW);
ShowWindow( Application.Handle, SW_SHOW );
end;
Wie kann ich das bei einer fremden Anwendung machen, z.B. den Eintrag vom WindowsMedia Player oder Word?
mfg
Hagbart