Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
6answers
527 views

Make the java systray look prettier in Linux

I'm making a Java Application on Linux that uses sytray using Java 6 and Swing. The app looks great (uses the system look and feel) but the systray looks awful. I mean the systray menu looks like old ...
15
votes
1answer
379 views

How do you create a Tray icon with FireMonkey?

With the new FireMonkey cross-platform tool, how does one create a tray icon? With Delphi it used to be TTrayIcon. The documentation has nothing, and no other questions seem to answer this. Would ...
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
2answers
612 views

Quick and easy: trayicon with python?

I'd just need a quick example on how to easily put an icon with python on my systray. This means: I run the program, no window shows up, just a tray icon (I've got a png file) shows up in the systray ...
5
votes
3answers
445 views

Creating single instance for system tray in java

I am working in a desktop application created in java. we are working for windows version (for running on windows O.S.) of the application. When we run our application, it creates a tray icon on ...
3
votes
5answers
77 views

Getting a .net app and a vb6 app to talk to each other?

I have a couple of applications that depend on each other. One is a robust vb6 application. The other is my eagerly anticipated, stealth technology employing, and likely oscar winning .net (2.0) ...
3
votes
1answer
259 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
241 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
655 views

.NET: How to place my window near the notification area (systray)?

I'd like to display a little popup window next to the notification area. It's similar to what Outlook/Skype/Live! Messenger/etc does when it displays the notification about a new message. In my case ...
3
votes
1answer
483 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
4answers
2k views

How to start WinForm app minimized to tray?

I've successfully created an app that minimizes to the tray using a NotifyIcon. When the form is manually closed it is successfully hidden from the desktop, taskbar, and alt-tab. The problem occurs ...
3
votes
1answer
566 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
1answer
448 views

Why am I seeing multiple Systray Icons?

I've added a Notify Icon to my app, and quite often I see up to 3 copies of the notify icon in my systray. is there a reason for this? is there a way to stop it from happening. Often this persists ...
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
632 views

Alternate showing/hiding window when notify icon is clicked

I'm implementing a Windows 7/Vista-style notification area ('system tray') pop-up application in WPF. I've written about my work so far here (determining the notify icon's position, disabling resize, ...
2
votes
1answer
977 views

Hide a form to the system tray

I'm posting this here since it took a lot of time for me to understand how the whole thing works when trying to hide a form in the systray. My question basically was: How can I hide a windows form ...
2
votes
1answer
627 views

Programatically forcing icons to be visible in the “notification area” /“systray”) in windows 7

Windows 7 allows users to hide/show icons in the "notification area" (aka systray). By default I think they're hidden? Is it possible to programatically (either through the app or through an ...
1
vote
1answer
71 views

C# Tray Icon application with daemon

Complete C# newbie here, so cut me some slack. I have this application that will live on the tray. When I click the tray I want to access a "settings" form. This is all coded and working. However, ...
1
vote
3answers
107 views

have multiple tooltips/popups show neatly stacked in the windows systray area, similar to messenger/anti-virus notifications

I am working on a program that monitors several things such as incomming messages, faxes, calendar items and alerts etc. This program is normaly in the systray. What i want to accomplish is to have ...
1
vote
1answer
73 views

How to re-add icon to system tray after explorer.exe crash

My java application currently has an icon in the system tray. When the system tray crashes, however (you can simulate this by killing explorer.exe in the taskbar), the icon disappears after the system ...
1
vote
1answer
154 views

Default state of the systray icon

In my WPF application, I had to set a systray icon. It's a business application which will be used every days. In win 7(maybe vista, i don't know), Some icons can be hidden, displayed only when ...
1
vote
8answers
693 views

.net - how to connect windows service with systray application

I have a windows service that do something periodically. on user account runs systray application (written in C#) that communicate with windows service (thru .net remoting) and shows a status and some ...
1
vote
1answer
301 views

QT how to detect the systray area for creating systary pop up windows

hello all i need to create/design QT systray popup windows , i was thinking about creating custom windows that derived from QDialog , so it could look better then the ordinary ...
1
vote
2answers
572 views

systray gadget to start stop tomcat

I'd like to know if anybody knows of any systray applet to control tomcat service con windows xp... apache installs its own, and there's one for mysql in the mysql gui tools... so the only one I'm ...
1
vote
1answer
731 views

Use system tray & icons in VBA (Access)

I've found a few tutorials that explain how to use the windows API to get a custom icon in the system tray. These are all for Visual Basic, and they don't seem to be scaling to VBA well. I'm ...
1
vote
1answer
187 views

Systray bubble not showing up (with enabled baloons in XP)

I was wondering what is wrong and after searching here I found out it could be due to disabled balloons, but thats not my case. I am using simple code, but it doesnt work. Thank you NotifyIcon ...
1
vote
1answer
719 views

Can I re-gain a systray icon of a running app that has gone missing?

Since I've finally got an answer for this question: Can you send a signal to windows explorer to make it refresh the systray icons, that asks about getting rid of dead systray icons, I would like to ...
1
vote
3answers
197 views

Correct behaviour for tray icon click?

When an application adds an icon to the system tray and minimises to it, there must be a way to restore it. However, when it comes to restoring the window I'm not sure what the 'correct' behaviour is ...
1
vote
4answers
1k views

How can I show a systray tooltip longer than 63 chars?

How can I show a systray tooltip longer than 63 chars? NotifyIcon.Text has a 63 chars limit, but I've seen that VNC Server has a longer tooltip. How can I do what VNC Server does?
1
vote
3answers
6k views

Problem with NotifyIcon.ShowBalloonTip - balloon not showing up

I'm having trouble with something that I thought would be easy... I can't get my NotifyIcon to show a balloon tip. The basic code is: public void ShowSystrayBubble(string msg, int ms) { ...
0
votes
1answer
34 views

How to make an Adobe Air Application that only shows in the taskbar?

I've followed the Adobe instrunctions on how to create an app without windows (link). The gist is that you can do this by hiding or closing the original nativeWindow and creating a new one with ...
0
votes
1answer
67 views

Creating a window from a new thread in WPF app with no main window

I'm working on a WPF application that has no main window (it runs in the notification area using code from http://www.codeproject.com/KB/WPF/wpf_notifyicon.aspx). In the App.xaml.cs, I've created a ...
0
votes
0answers
14 views

os independent panel applet, systray icon

I would like to code a small app as a panel applet or screenlet or systray based app, the main point here is that it should run under windows and linux (gnome) too. preferably, I would like to use ...
0
votes
1answer
61 views

How to show systray tooltip longer than 128 characters

According to MSDN, NOTIFYICONDATA::szTip only supports 128 characters of text. How do I workaround this limitation and show longer tooltip text?
0
votes
1answer
562 views

Clean up/Refresh Tray Area in C#

When either hiding my tray icon and closing the application, half the time my application's tray icon gets 'stuck'. Meaning doesn't leave until you mess around in the tray area. I know that to clean ...
0
votes
1answer
116 views

Win7 systray style popup

Hello guys I have an applcation that sets itself to 0 opacity on Form1_load which then changes to 1 when the user left clicks on the NotifyIcon. I would also like the form to center itself directy ...
0
votes
1answer
150 views

Maintain user visibility preferences on system tray app in windows 7

I have an application that is deployed via ClickOnce to a network share. I have the install mode set to online only. The application runs in the system tray. In Windows 7, when the program is first ...
0
votes
1answer
179 views

Csharp, how to call a form object from a tray based application [closed]

Possible Duplicate: C#, how to call a form object from a tray based application Hi guys, Iam trying to load a form class from a program running as a tray icon that originally used ...
0
votes
2answers
171 views

c# problem with systray icons in windows-server

i work with windows server 2003 (and 2008) and C#, i have a problem with systray of the desktop.I have done an application for disk managment and when the application start, it hide itself from ...
0
votes
3answers
1k views

Delphi: Minimize application to systray

I want to minimize a Delphi application to the systray instead of the task bar. The necessary steps seem to be the following: Create icon which should then be displayed in the systray. When the ...
0
votes
1answer
185 views

Replace an existing Winform HWND with another one?

I'm trying to hijack an existing window and replace it with the contents of a Winforms I own. I figured it would be pretty cool swapping the form's inner handle with the one I want to override, and ...
0
votes
3answers
246 views

How to restore an application from the SysTray? ShowWindow doesn't help since the Handle=0

Is it possible to restore a 3rd Party application which has been minimized to the SysTray? Calling ShowWindow is fine on apps minimized to the TaskBar but where the app has been minimized to the ...
0
votes
1answer
1k views

Problem with NotifyIcon: “Hide Inactive Icons” not working

I am using C# (.NET 3.5) and use the NotifyIcon to enable "Minimize to Systray". Everything is working great, except that the shell registers the systray icon with the title "No title" when you look ...
0
votes
2answers
951 views

Systray context menu - why are my commands not enabled?

I'm creating a WPF app and have a system tray icon with a context menu. For the menu items I want to use WPF commands but when I assign them they are always greyed out even though the (same) commands ...
-1
votes
2answers
126 views

C#, how to call a form object from a tray based application

I am trying to load a form class from a program running as a tray icon that originally used FileList frmFileList = new FileList(); Now instead of a filelist I want to use a custom form but I get ...
-1
votes
1answer
33 views

vista bllocks my systray icon for some reason

Why VISTA says to end-user that it has blocked my app's systray icon? how to avoid this?
-1
votes
1answer
1k views

Delphi “Tray” icon (NotifyIcon) context-menu does not disappear when clicking outside it

I'm trying to show a popup menu when right clicking my Notification Icon, which works fine; But I want the menu to disappear when the user clicks outside of that menu. It's supposedly by design (as ...