Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to hide an application from taskbar in Windows 7?

I would like to hide an application from the Windows 7 taskbar.

I want to make something like a toolbar on the edge of the screen which does certain things when the user clicks on it, but I don't want it to show in the taskbar, since its a thing that i want to stay in the background.

I tried the instructions in the following post, but it did not work on my application:

How to hide a taskbar entry but keep the window form

Then i tried it on a new empty VCL Forms Application and it still did not work. I searched for other solutions, but they all do very much the same like in the linked post.

Has something changed, that makes that impossible in windows 7? Or is there anything you could think of, that could prevent it from working?

like image 610
Marks Avatar asked Feb 11 '13 12:02

Marks


People also ask

How do I hide icons on Windows 7?

Right-click (or press and hold) the desktop, point to View, and then select Show desktop icons to add or clear the check mark. Note: Hiding all the icons on your desktop doesn't delete them, it just hides them until you choose to show them again.

Can we hide taskbar on Windows 7?

1. Click the Start button and search for "taskbar" in the search field. 2. Click "Auto-hide the taskbar" in the results.


2 Answers

You can override the main form's CreateParam to remove the flag that forces the taskbar button (WS_EX_APPWINDOW) and additionally make the form owned by the application window. That's doing the opposite of the requirement for the shell to place a taskbar button for a window. From "Managing Taskbar Buttons":

[..] To ensure that the window button is placed on the taskbar, create an unowned window with the WS_EX_APPWINDOW extended style. [..]

Sample:

type
  TForm1 = class(TForm)
  protected
    procedure CreateParams(var Params: TCreateParams); override;
  end;

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

Don't change the state of MainFormOnTaskbar property of the 'Application' from its default 'True' if you use this method.

You can also remove the second line (..WndParent := ..) and instead set PopupMode of the form to pmExplicit in the object inspector to same effect.


BTW, here's the documentation quote from the same topic for the solution TLama posted:

To prevent the window button from being placed on the taskbar, [...] As an alternative, you can create a hidden window and make this hidden window the owner of your visible window.

When you set MainFormOnTaskbar to false, the main form is owned by the application window by VCL design. And if you hide the application window, the requirement is fulfilled.

like image 171
Sertac Akyuz Avatar answered Nov 16 '22 00:11

Sertac Akyuz


Try to use a tricky way described in this article:

Set the MainFormOnTaskBar to False in your project file. Then try to hide the application window from the main form's OnShow and OnActivate event handlers. So your project might look like follows:

Project1.dpr:

program Project1;

uses
  Forms,
  Unit1 in 'Unit1.pas' {Form1};

{$R *.res}

begin
  Application.Initialize;
  Application.MainFormOnTaskbar := False;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.

Unit1.pas:

unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs;

type
  TForm1 = class(TForm)
    procedure FormShow(Sender: TObject);
    procedure FormActivate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.FormShow(Sender: TObject);
begin
  ShowWindow(Application.Handle, SW_HIDE);
end;

procedure TForm1.FormActivate(Sender: TObject);
begin
  ShowWindow(Application.Handle, SW_HIDE);
end;

end.
like image 31
TLama Avatar answered Nov 16 '22 00:11

TLama