1,025 questions
2
votes
0
answers
46
views
How to use ITaskbarList3::SetProgressState and ITaskbarList3::SetProgressValue in Go? [duplicate]
I make a software in Go. Because it made a long process, it displays a progression bar. I show one with a *fyne.widget.ProgressBar, and I would like to add another one directly on the taskbar button ...
0
votes
0
answers
78
views
AHK2 overlay only stays visible above taskbar when a file write triggers a refresh — any better alternatives?
I'm trying to keep a transparent always-on-top overlay (made in AHK v2) above the taskbar in Windows 10/11.
The Problem:
Everything works except when the Aero Peek / Show Desktop event fires (e.g. via ...
0
votes
1
answer
58
views
Set a QApplication on top of the screen with reserved space (like a taskbar)
General overview
I try to set just a minimal taskbar (like Polybar or i3bar, or any task bar you know).
The constraint are the folowing ones:
It should have a dedicate space to avoid overlaping with ...
2
votes
2
answers
191
views
How to make a taskbar button to display a progress bar in C?
The only way (from what I know) to create a progress bar in a taskbar button is to use the ITaskbarList3 interface, but that could only be used in C++, not C. Is there any way to do it in C, ...
1
vote
0
answers
52
views
How to Permanently Change Chromium Taskbar Icon and Name in Windows 11 for Modified Builds?
Problem Description:
I've built a customized Chromium browser for Windows. Modifications include:
1.Changed the executable name and process title by following this guide
2.Replaced all application ...
4
votes
2
answers
284
views
Control taskbar in Windows from java using FFM and winapi
I'm trying to control a taskbar so I can show a progress of some long running task in the JavaFX application. For communicating with winapi I want to use the new Java FFM API, which should replace the ...
7
votes
2
answers
203
views
How to manage taskbar from JavaFX, via native code in Linux
I'm trying get more experience with the new Foreign Function & Memory API in Java 22+. The best way how to learn a new API is by using it in a project.
My project's goal is to report on the ...
0
votes
1
answer
76
views
Taskbar Color Reverts When Changing Color Using SetWindowCompositionAttribute in WinUI3
I am encountering an issue with the taskbar color on Windows. When I change the taskbar color using the SetWindowCompositionAttribute method, the color initially changes as expected. However, as soon ...
0
votes
0
answers
60
views
Cannot hide taskbar when there is another docked app on screen
I created a simple window in rust with the win32 api and docked it to the top of the screen using the shell api. But if I run this code, after the window has been created the taskbar reappears ...
3
votes
1
answer
348
views
How to hide console application into Tray?
I want my console application to be hidden in the system tray after it starts. When working with a GUI application, I used TTrayIcon, and it worked without any problems. For the console application, I ...
0
votes
2
answers
506
views
How can I pin my app to the Windows Taskbar using Delphi code?
I'm writing an app where I'd like to provide users with the option to pin it to the Windows Taskbar programmatically. Is there a way to achieve this?
I've searched online, but the information seems to ...
-1
votes
1
answer
353
views
Why doesn't my app minimize when I click its icon on the taskbar?
The application I am developing is a Visual Studio forms application.
When I run it, it works fine and its icon appears in the taskbar, but when I press it to minimize the window it does nothing. ...
1
vote
0
answers
565
views
How to rearrange the list order of system tray icons on Win11?
After Win11 22H2, it is no longer possible to use TB-BUTTONCOUNT to obtain any information about the system tray. Microsoft has rewritten the taskbar UI using Xaml. I tried to find a new solution, and ...
-1
votes
1
answer
630
views
C# show form information in Windows 11 taskbar
I make a simple Form that can be shown over Windows TaskBar between the last program icon and first systray icon.
That works fine in Windows 10 but not in Windows 11
Handle of Shell_TrayWnd was fine ...
0
votes
0
answers
337
views
Delphi program in windows 11 shows default icon on task bar instead of runtime assigned icon
I want my program (developed with Delphi 10.3) to show a different taskbar icon depending on the database it is working on.
I use this code in my OnCreate handler (the DBCompany and CompanyIconFile ...
0
votes
1
answer
902
views
Change PowerShell Console Font and Layout in Windows 10
How can we programmatically alter the PowerShell console settings in Windows 10?
When I install a fresh copy of Windows, I would like the PowerShell console adjusted as follows:
Font size 18
Screen ...
0
votes
0
answers
175
views
Powershell Doesn't Let Me Make Changes in Settings
I was trying to manipulate the windows settings using the powershell. Below is the python code with which I try using powershell-commands to disable the taskbar (the automatically hide/show setting in ...
2
votes
2
answers
774
views
How to hide the Dock Icon in Jetpack Compose Desktop?
I want to create a compose desktop application that only lives in the tray, but doesn't show an app icon in the Windows Taskbar / macOS Dock.
I started with the tutorial Tray application without ...
0
votes
0
answers
117
views
How do I set the icon name in the taskbar in Ubuntu?
I am new to this part of coding, so here i am trying to name the icon which is popped in the taskbar when we open an application. I have created test.c file for testing but it is not giving me the ...
0
votes
1
answer
183
views
how to resize windows taskbar programmatically?
This autohotkey code works fine to resize the win 7 taskbar when it is on the left position
ResizeTaskbar(170)
ResizeTaskbar(size) {
pAppBarData := Buffer(48), NumPut("uint", ...
1
vote
2
answers
329
views
Which windows API returns the taskbar icon size?
Windows 8 and above changed the (default-DPI) size of "big" taskbar icons (introduced in Windows 7) from 32×32 to 24×24. However, GetSystemMetrics(SM_CXICON) and GetSystemMetrics(SM_CXSMICON)...
2
votes
2
answers
990
views
How to make my WPF app to be on top of everything, even the Windows taskbar (like Windows clock app)?
I made a little timer app using WPF and I wanted to put my app on the taskbar, but when I click anywhere on the taskbar, my app loses focus and the taskbar comes on top of my app, even though I have ...
4
votes
1
answer
993
views
Win11 custom taskbar control
Currently I need to display a textbox on the Windows 11 taskbar but sadly Deskbands are now deprecated, however I found a program called Performance Counter that does something like below
now I want ...
0
votes
0
answers
2k
views
How to Pin Programs to the Taskbar using Powershell
I would like to automatically pin several applications to the taskbar using PowerShell. After doing some searching online, I came across the following script:
# Function Credit: https://community....
0
votes
1
answer
153
views
The import java.awt.Taskbar cannot be resolved and Taskbar cannot be resolved
`if(!Taskbar.isTaskbarSupported()) {
JOptionPane.showMessageDialog(null, "Taskbar isn't supported!","ERROR", JOptionPane.ERROR_MESSAGE);
System.exit(-1);
...