1,025 questions
2 votes
0 answers
48 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 ...
1 vote
1 answer
87 views
How to display a progression bar on the task bar using Go and Fyne?
I am creating a little software in Golang. I use Fyne as GUI library. It creates long process (it it a file encrypter), so I display a progression bar, as it: go func() { go encryptCore( ...
0 votes
0 answers
79 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
0 answers
80 views
Programmatically querying/toggling Windows "Show my taskbar on all displays" via Python
I have an application in which I need to (at least while it's running) show the taskbar on all Windows displays, so I'm looking for a way to programmatically toggle the Windows "Show my taskbar ...
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 ...
0 votes
1 answer
126 views
How to read/fetch the setting values of [Start > Settings > Personalization > Taskbar > Turn system icons on or off]?
I need to get and display in CLI the settings values of "Location", "Action Center" and "Touch Keyboard" under [Start > Settings > Personalization > Taskbar > ...
2 votes
2 answers
205 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
2 answers
193 views
When I hide the Main Form and show another Form (like a splash screen, login, or secondary UI), the app disappears from the Taskbar
I am currently learning the fundamentals of Delphi. When I hide the Main Form and show/display a new Form, the icon of the program on the Taskbar disappears. FRMsecond.show; Frmmain.hide; The .dpr ...
1 vote
0 answers
58 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 ...
0 votes
0 answers
84 views
Several Thumbnails on Taskbar for runtime created windows
I try to make Windows show several thumbnails for forms created at runtime in the group with the main form. So, when the mouse hovers over the icon of the main form, I want to see the thumbnail for ...
4 votes
2 answers
287 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 ...
-1 votes
1 answer
122 views
Fail to create instance of ITaskbarList3
I'm learning the new Java FFM API. During the learning, I decided to use Windows SDK to control Taskbar. The interface ITtaskbarList3 represents the Taskbar and provides functions to control it. I ...
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
0 answers
33 views
How to determine if taskbar pinning will trigger a notification or be silent on win10
I am working with Chromium code and want to pin the shortcut to the taskbar. Like in this photo: On Win11, the notification appears always, which is great. But on some Win10 the shortcut is pinned ...
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 ...