For programming questions about the application switcher and launcher on Windows (or other operating systems copying its desktop environment), usually docked to the bottom of the screen. Questions might relate to interacting with and/or modifying the taskbar's behaviors.
Questions tagged [taskbar]
1008 questions
87
votes
7 answers
How to make Eclipse behave well in the Windows 7 taskbar?
All other apps that can be pinned to the taskbar behave well.
But Eclipse doesn't show recently open projects when I right click it.
It also doesn't allow to pin some projects inside it.
Note that I have the JS version of Eclipse Helios. Which…

Jader Dias
- 88,211
- 155
- 421
- 625
74
votes
9 answers
How to display a Windows Form in full screen on top of the taskbar?
I have a .net windows application that needs to run in full screen. When the application starts however the taskbar is shown on top of the main form and it only disappears when activating the form by clicking on it or using ALT-TAB. The form's…

myquestionoftheday
- 911
- 1
- 7
- 9
40
votes
6 answers
Win32: full-screen and hiding taskbar
I have a window, which I SetWindowPos(window, HWND_TOP, 0, 0, GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN), SWP_FRAMECHANGED);
It covers the whole screen, ok, but it takes a while (0.5 sec) to cover the taskbar as well.
Is there a…

Lars Kanto
- 685
- 2
- 10
- 15
40
votes
4 answers
Setting the Windows taskbar icon in PyQt
I'm working on an applcation in Python's PyQt4 and cannot find how to change the taskbar icon. I made my .ui files in Qt's Designer, where I can change the windowIcon properties. But that is not what I am looking for. I want to change the look of…

Marko
- 20,385
- 13
- 48
- 64
38
votes
3 answers
How to hide a JFrame in system tray of taskbar
I have created a JFrame and want to hide it in the taskbar in windows, but, it should not be visible in the bottom right corner, but hidden in the tray menu items.
Can anybody tell me how to do this?
Do I need to make some changes in system settings…

Mohammad Faisal
- 5,783
- 15
- 70
- 117
35
votes
7 answers
Pinning a Java application to the Windows 7 taskbar
I use Launch4j as a wrapper for my Java application under Windows 7, which, to my understanding, in essence forks an instance of javaw.exe that in turn interprets the Java code. As a result, when attempting to pin my application to the task bar,…

Paul Lammertsma
- 37,593
- 16
- 136
- 187
32
votes
4 answers
How to make a WPF Window to blink on the taskbar?
A given moment my WPF app needs user attention. I know it is possible to make the Windows 7 taskbar icon to flash with a yellow color.
I tried so far:
Window.Activate Attempts to bring the window to the foreground and activates it.
Window.Focus…

Jader Dias
- 88,211
- 155
- 421
- 625
29
votes
4 answers
Pinning a Java executable (with launch4j) to the Windows 7 taskbar
After spending half a day searching and trying, I'm finally giving up.
I have a java application of which I create a runnable jar (to include any other libs and just have a single jar file). With launch4j and the runnable jar I'm making an…

ToFi
- 1,167
- 17
- 29
27
votes
9 answers
Change pinned taskbar icon (windows 7)
I wan't to customize the icon displayed within the windows 7 taskbar.
When my app is running, I can do it by changing main window icon but, when the app is pinned, the exe's icon is displayed.
How can I set the taskbar icon for my app to an icon…

François
- 935
- 1
- 7
- 11
26
votes
1 answer
How can I hide my application's form in the Windows Taskbar?
How can I hide the name of my application in the Windows Taskbar, even when it is visible?
Currently, I have the following code to initialize and set the properties of my form:
this.AutoScaleDimensions = new System.Drawing.SizeF(6F,…

Farna
- 1,157
- 6
- 26
- 45
26
votes
4 answers
Qt Hide Taskbar Item
I have a custom QWidget and I simple don't want it to show up in the taskbar. I have a QSystemTrayIcon for managing exiting/minimizing etc.
user372743
24
votes
7 answers
How to pin Visual Studio Solutions in Windows 7 Taskbar
As in the title. Is it possible? When I rightclick on Visual Studio in a Taskbar I have a "Recent" category there i have but 1 .cs file that I can pin.
Now the question is: what to do to pin a .sln solution there?

Mikeon
- 10,499
- 6
- 27
- 31
23
votes
3 answers
How to pin to taskbar using PowerShell
How can I pin some programs to taskbar on Windows 7 using
PowerShell? Please explain step-by-step.
And How to modify the following code to pin a folder to
taskbar? For Example
$folder = $shell.Namespace('D:\Work')
In this path, example named…

cethint
- 2,231
- 8
- 28
- 31
23
votes
7 answers
C# - Changing the icon of the taskbar
I want to change the icon on the taskbar of my software, so I changed the project settings. This path was suggested by Visual Studio itself
But my taskbar still shows the same icon as before (the standard one) - In my Explorer the .exe has the…

loomie
- 606
- 3
- 10
- 21
22
votes
1 answer
Triggering taskbar button flash from batch file?
Is it possible to trigger Windows' "flash the task bar button X times or until the window comes to the foreground" behavior from a batch file? I'm trying to call the user's attention to a long-running script upon completion.
Using an external…

Ben Blank
- 54,908
- 28
- 127
- 156