Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
46 views

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 ...
eliotttak's user avatar
0 votes
0 answers
78 views

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 ...
Black Mamba's user avatar
0 votes
1 answer
58 views

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 ...
fauve's user avatar
  • 321
2 votes
2 answers
191 views

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, ...
sad's user avatar
  • 85
1 vote
0 answers
52 views

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 ...
ayumi's user avatar
  • 11
4 votes
2 answers
284 views

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 ...
Petr Štechmüller's user avatar
7 votes
2 answers
203 views

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 ...
Petr Štechmüller's user avatar
0 votes
1 answer
76 views

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 ...
Jacob Mordon's user avatar
0 votes
0 answers
60 views

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 ...
Barnabás's user avatar
3 votes
1 answer
348 views

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 ...
Sashko1121's user avatar
0 votes
2 answers
506 views

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 ...
Martin Kakhuis's user avatar
-1 votes
1 answer
353 views

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. ...
Hugo Jiménez's user avatar
1 vote
0 answers
565 views

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 ...
Adaschkk's user avatar
-1 votes
1 answer
630 views

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 ...
Eric's user avatar
  • 39
0 votes
0 answers
337 views

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 ...
Heinzi Tuberkel's user avatar
0 votes
1 answer
902 views

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 ...
YorSubs's user avatar
  • 4,238
0 votes
0 answers
175 views

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 ...
noah_ks's user avatar
2 votes
2 answers
774 views

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 ...
neuos's user avatar
  • 63
0 votes
0 answers
117 views

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 ...
Basavaraj Kittali's user avatar
0 votes
1 answer
183 views

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", ...
Badr Elmers's user avatar
  • 1,816
1 vote
2 answers
329 views

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)...
Medinoc's user avatar
  • 6,699
2 votes
2 answers
990 views

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 ...
bzmind's user avatar
  • 498
4 votes
1 answer
993 views

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 ...
Saylent's user avatar
  • 179
0 votes
0 answers
2k views

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....
SeveredTRUTH's user avatar
0 votes
1 answer
153 views

`if(!Taskbar.isTaskbarSupported()) { JOptionPane.showMessageDialog(null, "Taskbar isn't supported!","ERROR", JOptionPane.ERROR_MESSAGE); System.exit(-1); ...
Anjali Yadav's user avatar

1
2 3 4 5
21