taskbar

Change pinned taskbar icon (windows 7)

蹲街弑〆低调 提交于 2019-11-27 03:12:21
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 different from the one embedded within the exe ? Not tried, this solution may work but looks dirty. Edit : Our app is compiled once but depending on config file, features are enabled or not so it's a product or another. We do not want to compile one exe for each product. The solution above may not work as many instances of my app can be installed in

How to dock an application in the Windows desktop?

断了今生、忘了曾经 提交于 2019-11-27 02:23:04
问题 I would like to develop a small notifications application for Windows in .NET that docks on the right/left side of the screen (not consuming more than 300px), should always be visible and force the rest of windows to not overlap this application (something like the old Office taskbar or Vista's Sidebar). I have no idea where to start. Can it be done using XAML/WPF? Since I haven't even started coding any option is valid at this point. Thanks! 回答1: The most reliable way would be to register

Using Windows 7 taskbar features in PyQt

∥☆過路亽.° 提交于 2019-11-26 22:42:42
问题 I am looking for information on the integration of some of the new Windows 7 taskbar features into my PyQt applications. Specifically if there already exists the possibility to use the new progress indicator (see here) and the quick links (www.petri.co.il/wp-content/uploads/new_win7_taskbar_features_8.gif). If anyone could provide a few links or just a "not implemented yet", I'd be very grateful. Thanks a lot. 回答1: As quark said, the functionality is not in Qt 4.5, but you can call the

Hide Start Orb on Vista / Win 7 in C#

做~自己de王妃 提交于 2019-11-26 21:19:52
问题 When hiding the Task Bar on Vista and Windows 7 the Start Button (also known as the Start Orb) doesn't get hidden. I've been looking for a solution to this and I've found one but it seems more complex than necessary. This CodeProject article describes (and contains code for) a solution where you enumerate all child windows of all threads in the process that contains the start menu. Has anyone found a simpler solution? Just for reference. The code for hiding the Task Bar (without hiding the

How to hide a JFrame in system tray of taskbar

主宰稳场 提交于 2019-11-26 19:56:05
I'd created a JFrame and want to hide in taskbar (in windows not visible right in the bottom but hidden in the tray menu items ). Can anybody tell me how to do that? Did I need to make some changes in System settings of windows ? for example, you might have seen some download managers , team viewer , 4shared desktop , etc. are hide in taskbar's tray menu items. Mohammad Faisal import java.awt.*; import java.awt.event.*; import javax.swing.JFrame; import javax.swing.UIManager; /** * * @author Mohammad Faisal * ermohammadfaisal.blogspot.com * facebook.com/m.faisal6621 * */ public class

Delphi Change main form while application is running

旧城冷巷雨未停 提交于 2019-11-26 18:19:37
问题 I have this problem. When I hide my main form, then the taskbar icon of my application is also hidden. I saw a new question about this problem as well and the answers didn't really help. They suggested to minimize it, but I do not want to minimize the application. Is it possible to change the main form while the application is already running? for instance. I have two forms. when I want to hide the one form and show the other form, then the taskbar icon should stay at the taskbar and the main

How can I flash the Windows taskbar using Swing?

喜夏-厌秋 提交于 2019-11-26 17:13:44
问题 I'm developing a Swing application and I need to flash the Windows taskbar. I can't use frame.requestFocus() because I don't want to steal focus from any other application. 回答1: I don't know if it applies to newer versions of Windows, but the .toFront() method used to flash the window if none of the current VM's windows were in the foreground. This means that calling frame.toFront() on a minimized frame would always make it flash... 回答2: JNIWrapper with its winpack extension can do what you

Win32: full-screen and hiding taskbar

▼魔方 西西 提交于 2019-11-26 15:24:29
问题 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 way to come over the taskbar immediately? I found that setting HWND_TOPMOST does it immediately, but it stays above all the other windows, even if I switch the app - this is something I don't want. Also, if I first hide the window and then show it,

Pinning a Java application to the Windows 7 taskbar

会有一股神秘感。 提交于 2019-11-26 15:16:56
问题 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, Windows instead pins javaw.exe . Without the required command line, my application will then not run. As you can see, Windows also does not realize that Java is the host application: the application itself is described as "Java(TM) Platform SE binary"

Setting the Windows taskbar icon in PyQt

半世苍凉 提交于 2019-11-26 11:24:47
问题 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 the application\'s icon in windows taskbar. For now it is Python logo in a window icon. I found some information on SO: link but it\'s not helping me much. I tried: app = QtGui.QApplication([]) app.setWindowIcon(QtGui.QIcon(\'chip_icon_normal.png\