How to remove an application from ALT + TAB?

75 Views Asked by At

I have an app which is supposed to be hidden. To hide it from the Taskbar I use:

procedure TForm1.CreateParams(var Params: TCreateParams);
begin
  inherited;
  Params.ExStyle := Params.ExStyle and not WS_EX_APPWINDOW;
  Params.WndParent := Application.Handle;
end;

But that does not remove it from the ALT + TAB menu. How do I remove it from that menu?

0

There are 0 best solutions below