Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
8answers
14k views

Writing a Windows system tray application with .NET

What's the correct way to write a Windows system tray application in C#? Not an application that can minimize to the tray, but one that only exists in the tray, and can have an icon tool tip and ...
12
votes
2answers
5k views

How do I put a Java app in the system tray?

I have a little control-panel, just a little application that I made. I would like to minimize/put the control-panel up/down with the systemicons, together with battery life, date, networks etc. ...
11
votes
5answers
4k views

PyQt4 Minimize to Tray

Is there a way to minimize to tray in PyQt4? I've already worked with the QSystemTrayIcon class, but now I would like to minimize or "hide" my app window, and show only the tray icon. Has anybody ...
9
votes
1answer
1k views

C# - Detect time of last user interaction with the OS

I'm writing a small tray application that needs to detect the last time a user interacted with their machine to determine if they're idle. Is there any way to retrieve the time a user last moved ...
8
votes
3answers
4k views

Tray Icon animation

I know how I do to place a icon in the systray. But what the best method to perform systray icon animation? animated gifs? timers? Preferentially using C# and/or WPF. Thanks!
8
votes
5answers
3k views

how to put an .net application in system tray when minimized?

can anyone please suggest a good code example of vb.net/c# code to put the application in system tray when minized.
7
votes
4answers
540 views

Hide or not to hide the system tray in a Windows Phone 7 application?

I am debating whether to hide or not to hide the system tray in a Windows Phone 7 application. I've not found any general suggestions on this issue -the official Windows Phone design guidelines don't ...
7
votes
4answers
2k views

How to write an application for the system tray in Linux

How do I write my application so it'll live in the system tray on Linux? In fact, just like CheckGmail. As with CheckGmail, I'd also like some sort of popup box to appear when I hover the tray icon. ...
7
votes
3answers
5k views

PyQt: Show menu in a system tray application

First of all, I'm an experienced C programmer but new to python. I want to create a simple application in python using pyqt. Let's imagine this application it is as simple as when it is run it has to ...
7
votes
7answers
1k views

A way to ensure that a system tray icon is removed… guaranteed

Is there a way to guarantee that your system tray icon is removed? To add the system tray icon you do: Shell_NotifyIcon(NIM_ADD, &m_tnd); To remove the system tray icon you do: ...
7
votes
5answers
6k views

How to make a Windows Forms .NET application display as tray icon?

What needs to be done to have your .NET application show up in Window's system tray as icon? And how do you handle mousebutton clicks on said icon?
6
votes
1answer
1k views

What's the simplest way to put a python script into the system tray (Windows)

What's the simplest way to put a python script into the system tray? My target platform is Windows. I don't want to see the 'cmd.exe' window.
6
votes
5answers
2k views

How would a system tray application be accomplished on other platforms?

Windows has the "system tray" that houses the clock and alway-running services like MSN, Steam, etc. I'd like to develop a wxPython tray application but I'm wondering how well this will port to other ...
5
votes
4answers
99 views

How to trap the Window minimizing event?

I want to create a JFrame instance and on the click of its minimize button, I would like to hide it to the System Tray which is usually the taskbar of windows. I'd come to know that by using ...
5
votes
2answers
203 views

Best Icon size for displaying in the tray

I am working on a Delphi program which will display an icon on the "tray". I am doing it "the hard way" (using the Shell_NotifyIcon api, etc and not a component, for reasons outside the point here). ...
5
votes
1answer
607 views

Maximize application in system tray?

I wrote a little WPF app that when 'closed' minimizes to the system tray (customer requirement). Double clicking pops it back up, or right click gives a context menu to exit. But if the app is ...
5
votes
1answer
626 views

System Tray only (no dock icon) application using C# / Mono on Mac

I'm looking to move one of my C# applications over to Mono for use on the Mac. Currently, I'm trying to figure out how to make it a sort of "background" process, but still have the ability to have GUI ...
5
votes
2answers
697 views

Hide Java application from command-tab application switcher and dock in OSX

I have a java application which has a tray icon in the top menu bar of OSX. When I minimize the application I would like it to disappear from the dock and the command-tab application switcher and only ...
5
votes
2answers
2k views

Properly displaying a tray balloon tooltip in PowerShell

Short version: I think I need help with properly using events in PowerShell that are invoked as a result of a Windows Message to get rid of a balloon tooltip's icon. Long Version: I have a ...
5
votes
3answers
1k views

Send to tray on Close

How can I send the window minimized to tray when on click close button? Also how to show icon in tray when application start?
4
votes
4answers
336 views

Hiding my program in the System Tray in Windows

I'd like my program to display an icon in the TaskBar Status Area near the clock in Windows and found a way to do so. The thing is, I'd like my program to stay open in the Status Area if the "X" is ...
4
votes
2answers
5k views

System Tray (Menu Extras) icon in Mac Os using Java

I'm developing a desktop application using Java. I want to put an icon (with a contextual menu) on the system tray (called Menu Extras in Mac Os). Java 6 comes with support for doing this in Windows ...
4
votes
3answers
1k views

Having the application minimize to the system tray when button is clicked?

How can I have my application minimize itself to the system tray in WindowsXP/Vista? I'm also looking for a way to have a message display itself when the mouse is hovered on the icon. Is it possible ...
4
votes
2answers
271 views

Standards for System Tray applications

Are there any standards out there for how applications that have a system tray icon should behave? I recently wrote an application that sits in the system tray most of it's life. I handed it to a ...
4
votes
5answers
3k views

Force Windows to show a system tray icon

This is a pretty stupid question, but here goes: Is there a way (in .net) to force Windows to show your system tray icon instead of hiding it? I don't want to do this all the time, but at least for ...
4
votes
2answers
1k views

Java desktop app: How to maximize tray application when hotkey pressed?

I need to write a program that, when minimized, lives in the System Tray, and I'll use Java 6's SystemTray API to do that. How can I make that application comes to the foreground when the user ...
4
votes
3answers
6k views

How do I ask Windows for the size of system tray icons?

I noticed that my app sends icons to the Windows tray with a size of 16x16 pixels--and my Vista PC I've got a doublewide taskbar that appears to show icons at 18x18. The resizing artifacts on my app's ...
4
votes
3answers
3k views

How to display text in system tray icon with win32 API?

Trying to create a small monitor application that displays current internet usage as percentage in system tray in C using win32 API. Also wanting to use colour background or colour text based on how ...
3
votes
2answers
100 views

Java desktop notifications Ubuntu

I'm a noob Java programmer and I have a easy question. Ubuntu has desktop notifications in the bottom of the screen. My question is how to use it with Java. I couldn't find a solution for this. I use ...
3
votes
1answer
169 views

Refreshing system tray icons programmatically

I've an application which has a system tray icon. While uninstalling I'm killing the process if its running. So, as am not gracefully stopping the app, the icon remains in the system tray and will ...
3
votes
1answer
75 views

Cross Platform Tray App

I'm looking to develop a type of system tray/dock application that will run in the background and perform some tasks. I want to target Windows and OSX. After doing some research and based on my own ...
3
votes
1answer
263 views

How to Shell_NotifyIcon WITHOUT adding an icon in the notification area

MSDN's documentation about Notifications and the Notification Area is pretty clear in the requirement for having an icon in the notification area in order to display a notification: To display a ...
3
votes
3answers
431 views

QT system tray context menu remains when app loses focus

I've set up a system tray icon for my app and have attached a simple context menu to it. If I right click the icon to bring up the context menu it works fine. If I then click somewhere that loses ...
3
votes
1answer
574 views

C# WPF MVVM - textbox in system-tray icon contextmenu

I'm currently tring to use a textbox in the contextmenu of my system-tray icon. The problem is, that the textbox doesn't react on the keydown event. that means I'm not able to insert text into my ...
3
votes
1answer
1k views

How to create WPF System Tray Icon when no “Main” host window exists

Background We have an application that sits in the background and utilizes FileSystemWatcher to monitor a folder for new files, when a new file appears it spawns a window. What I need to do is ...
3
votes
1answer
597 views

System notification area balloon by C++?

Is there simple code to show balloon notification for C++? I'm using Visual Studio 2010.
3
votes
3answers
243 views

How to change the tray icon with Java?

I need to change the tray icon, so that it would notify users about the number of unread messages. How to do this with Java?
3
votes
2answers
285 views

Swing: Steal focus from other apps (usability in OS X)

I have an application in java swing which runs in the system tray most of the time. The user can use the Tray Menu to perform several actions. One of those actions is to show the app window. The ...
3
votes
1answer
485 views

Minimise any program to system tray

Hey, I am trying to make a program that minimises any program to the system tray instead of normally minimising it. Is this possible? I have been looking around on google but cant find anything.
3
votes
3answers
286 views

Notifier for System Tray - Fire when new record gets created in SQL Server

Work on a support helpdesk. New tickets come in and records are created in a SQL Table and they are dumped to a specific category where any analyst can pick them up. Front end does not notify analysts ...
3
votes
2answers
141 views

Tray app takes 40mb in xp and 10mb in win7

I've developed a small application in C# (.net 3.5) which runs in the system tray. Basically it just checks a rss-feed every 5 minutes, and if there's a new feed since the last time it checked, it ...
3
votes
4answers
1k views

How to prevent leaving an Icon in System Tray on exit?

My program puts an icon in the system tray because the user may minimize to it. However, if the application crashes, or I stop the app from running in VS it leaves the icon in it until I hover over it ...
3
votes
3answers
1k views

C# - Minimize to tray at system startup

In my application, I have an option to start the application when Windows is started. That works great. I also have it so that, when minimized, the application is minimized to the system tray. Is ...
3
votes
1answer
567 views

TrayIcon balloon does not show up

I compiled my trayicon utility c++ code in visual studio 2005 express edition and tray icon balloons showed up successfully but later I deleted my firewall, switched on to windows firewall and now I ...
3
votes
2answers
550 views

Is there anyway to display a custom form in Java that acts similar to TrayIcon.displayMessage()?

Using Java is there anyway to display a custom form/image that behaves similar to TrayIcon.displayMessage() function in that it displays just above the system tray for a while then disappears? I am ...
3
votes
3answers
4k views

.Net Console Application in System tray

Is there a way I can put a console application in the system tray when minimizing ? I use .Net 3.5 with c#
3
votes
6answers
7k views

Can you send a signal to Windows Explorer to make it refresh the systray icons?

This problem has been afflicting me for quite a while and it's been really annoying. Every time I login after a reboot/power cycle the explorer takes some time to show up. I've taken the step of ...
2
votes
1answer
55 views

Why would a system tray icon clear an earlier-displayed one?

We have an application that uses various system tray icons to communicate with users. Different icons indicate different internal states of the (otherwise windowless) application. We implemented our ...
2
votes
1answer
153 views

Programmatically close Java Tray Balloon

I am using java.awt.SystemTray to create and manage the tray icon and balloon messages. Everything works fine. But I would like to know whether it is possible to close or fade the message after it ...
2
votes
1answer
203 views

Delphi: CoolTrayIcon's ShowBalloonHint is not working

I used CoolTrayIcon, and ShowBalloonHint to warn user to incoming messages. Everything has been working fine till today. Today once I saw the Balloon, but later never. In these period some Windows ...

1 2 3 4