taskbar

Can task-switching keyboard shortcuts be disabled in W7 using Delphi?

杀马特。学长 韩版系。学妹 提交于 2020-07-02 18:07:27
问题 MY application has had a mode for years where the customer can 'disable access to the OS'. Obviously this feature goes against the grain (at least as far as Windows is concerned) but there are installations where my App is the only program that should ever be visibile to a machine operator amd in this case such a feature is useful. The technigue I used was built from several 'layers': Hide the taskbar and button. Disable task-switching. Disable my main form system icons. To disable the

A command or message or DLL call to set automatic hiding of Windows taskbar?

别等时光非礼了梦想. 提交于 2020-05-16 05:37:30
问题 I need to set or toggle auto-hiding of Windows 10 taskbar programmatically. An action bound to a hotkey for productivity and convenience. Is there a command-line command or a DLL call which allows to achieve equivalent of flipping the following switch: Currently I am achieving this by opening the above Settings window and sending keystrokes for search, followed by Down s and Space and Alt + F4 but it is slow and unreliable. This question is not language-specific since DLL calls look pretty

How to restore a “missing” notification icon when explorer.exe is restarted?

一个人想着一个人 提交于 2020-03-13 06:44:06
问题 I have a Win32 application which adds a taskbar icon on startup. It is working perfectly, except when Explorer crashes and then restarts, my application keeps on running, but the taskbar icon is gone. I suspect I'm supposed to handle some event, but which? 回答1: What you are referring to are in fact known as notification icons. It's important to get this terminology right so that we know what you mean. Anyway, I think my guess is accurate. You need to listen for a window message that is

How to restore a “missing” notification icon when explorer.exe is restarted?

只谈情不闲聊 提交于 2020-03-13 06:43:40
问题 I have a Win32 application which adds a taskbar icon on startup. It is working perfectly, except when Explorer crashes and then restarts, my application keeps on running, but the taskbar icon is gone. I suspect I'm supposed to handle some event, but which? 回答1: What you are referring to are in fact known as notification icons. It's important to get this terminology right so that we know what you mean. Anyway, I think my guess is accurate. You need to listen for a window message that is

How to auto-hide the taskbar from the command line

我的未来我决定 提交于 2020-02-21 11:01:51
问题 Does anyone know how I can automatically hide the task bar in windows 7 via command line or some other method? 回答1: Here's a little C program that will toggle the hidden/shown state of the taskbar window. Note that when it's hidden it's actually gone from the screen completely (it's not in auto-hide mode). #include <windows.h> int main() { HWND hwnd = FindWindow("Shell_traywnd", ""); if (IsWindowVisible(hwnd)) SetWindowPos(hwnd,0,0,0,0,0,SWP_HIDEWINDOW); else SetWindowPos(hwnd,0,0,0,0,0,SWP

KDE Taskbar Progress

痞子三分冷 提交于 2020-01-31 05:58:07
问题 I am trying to show a progress in the taskbar of the plasma desktop using the KDE Frameworks. In short, it want to do the same thing as dolphin, when it copies files: I'm kinda stuck, because I don't even know where to get started. The only thing I found that could be useful is KStatusBarJobTracker, but I don't know how to use it. I could not find any tutorials or examples how to do this. 回答1: Right, so as it turns out you are right, there is not currently a tutorial for this. This

Remove the Google Chrome pinned icon on the taskbar

我的梦境 提交于 2020-01-30 08:30:28
问题 I want to remove the Google Chrome pinned icon on the taskbar. The uninstall does NOT remove the icon. I modified code to remove just the Google Chrome.lnk. What I want to do (knowing about VBS) is to loop through all the user folders not just the current user which is I believe defined as strCurrentUserAppData . The other desire I would like to do with this code is to use it with SCCM to do a clean install of Chrome. I installed the x64 version and need to replace it with the x86 version.

Is there a way to configure PuTTY or other terminal to flash the taskbar on next output to stdout?

冷暖自知 提交于 2020-01-23 05:22:20
问题 I'm specifically looking for a solution for PuTTY but also interested for other terminal emulators, like Gnome Terminal. My thought is it would be useful if I start a tar zxvf to be able to set a trigger on the terminal emulator, minimize it, and on next output to stdout/stderr I get a notification in the task bar that the command has finished. 回答1: This works for me: echo -e "\a" Then update your PuTTY session to use the Visual Bell, and set "Taskbar/caption indication on bell" to Flashing

Create a Taskbar Icon in Windows Mobile 6.5?

南笙酒味 提交于 2020-01-16 11:51:31
问题 Hi All, I have a requirement to build an app for windows mobile 6.5, which will display an icon in the taskbar (at the top to the left of the volume,clock and wireless icons) and respond to an onclick event. I have found references describing how to display icons in the system tray, but that does meet the requirement. Does anyone know how to achieve this ? Thanks in advance. Damien. 回答1: You need to use the notification API. The taskbar is able to hold user notifications. Here is a compact

Create a Taskbar Icon in Windows Mobile 6.5?

ε祈祈猫儿з 提交于 2020-01-16 11:50:02
问题 Hi All, I have a requirement to build an app for windows mobile 6.5, which will display an icon in the taskbar (at the top to the left of the volume,clock and wireless icons) and respond to an onclick event. I have found references describing how to display icons in the system tray, but that does meet the requirement. Does anyone know how to achieve this ? Thanks in advance. Damien. 回答1: You need to use the notification API. The taskbar is able to hold user notifications. Here is a compact