3
votes
4answers
140 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 u …
1
vote
1answer
56 views
Why can my property sheet, shown from a system tray icon, lock up the taskbar?
Note: code samples have been simplified, but the overall structure remains intact.
I am working on a Win32 application whose main interface is a system tray icon. I create a dummy …
0
votes
1answer
111 views
java 1.6 SystemTray icon does not appear on windows startup
I have a Java 1.6 desktop application, started with javaw from a batch file on Windows XP. There is a .lnk link to this batch file, which is placed to windows Startup folder in ord …
1
vote
2answers
251 views
No system tray ToolbarWindow32 window handle when running in (64bit) citrix
We have written a C# command line app that gets run as the first step in a script that is executed when users launch our CRM system on citrix (it is a published app). The purpose …
0
votes
7answers
112 views
Is an app with “system tray” icon OK for a continually running scheduler, or should I create a windows service???
Hi,
Requirement - I have a periodic task I want to run in a windows environment for my application. It will have a simple interface that allow some basic configuration (e.g. URLs …
0
votes
2answers
89 views
How to opt out Task Bar Button & Display System Tray Icon
How can I hide my VC# applications task bar button and show a system tray icon instead. Then, when I have the icon, how to display notifications like FDM or Windows Update etc, and …
2
votes
3answers
149 views
Hiding the dialog on startup for a system tray application
I'm writing an application in C++ that runs as a system tray icon. When the application initially starts up the main dialog loads up and takes focus, which isn't the behavior I int …
0
votes
4answers
482 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 tim …
0
votes
1answer
151 views
SysTray Icon not visible after restart for a program running as administrator.
I have a simplest form of an application, in which I am showing a SysTray Icon and adding the application in Startup items. Application is developed in C#. I want tray icon to be s …
3
votes
2answers
255 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 …
2
votes
2answers
127 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 …
0
votes
0answers
160 views
double click on system tray icon activates the icon next to
When double clicking on icon, on taskbar, software starts and remove the icon, but also icon next to it opens.
3
votes
4answers
780 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!
6
votes
6answers
375 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 …
