Questions tagged [tray]

The tag "tray" refers mostly to the GUI system notification area (called system tray) and rarely to the disc tray of an optical disc drive. Better use tag "trayicon" in case of a single tray icon and "notification-area" or "system-tray" in other cases about the system tray.

175 questions
0
votes
2 answers

window.maximize() fails when window is minimized electron

I have created an electron app with a tray Icon. When I right click the tray icon I show a menu with 4 options: Minimize Maximize Restart Exit Here is the code that creates the tray Icon: trayIcon = new Tray('icons/foo.png'); const…
Manos Kounelakis
  • 2,848
  • 5
  • 31
  • 55
0
votes
0 answers

Put Application in Main System Tray

Using NotifyIcon, the application by only appears when you click "Show hidden icons" in Windows I want my application to always be shown in the system tray, like this Can this be done in VB.NET/C#?
user1837725
  • 493
  • 1
  • 5
  • 9
0
votes
1 answer

Is it possible to hold object instances via C# Remoting?

I'm new to remoting, I want to make a system tray app which will be used to perform some background tasks. I have other 2 programs which need to access the objects modified by the system tray app, and them do stuff with them. It's more or less like…
Conrad Clark
  • 4,533
  • 5
  • 45
  • 70
0
votes
1 answer

Java Swing - How to override the tray 'displayMessage' popup?

I set up a tray for my application and when an event occurs the 'displayMessage(String, String, Icon)' method is called. Is there anyway to override the paint method of this popup to make it look different? Edit: No-one?
rvk
  • 737
  • 3
  • 9
  • 23
0
votes
1 answer

Detect CD tray status

I'd need a code to detect if the CD tray is open or closed. I think this is possible, because a while ago I found the following: http://www.technical-recipes.com/2014/reading-the-status-of-dvd-drives-in-c/ The problem is that I can't make this code…
0
votes
1 answer

How to make many forms working?

I have an application with many forms that user can run from tray. But when user runs 2 forms, just the last one will work, until he closes it. After the second form is closed, the first one is working again. How to make many forms working all the…
AnotherSimpleName
  • 151
  • 1
  • 1
  • 9
0
votes
1 answer

Tray in Electron

Trying to find out how to reference my Tray object. It has been created, but for some reason, I cannot seem to find out how to call it for reference. Trying via dev console... require('electron').remote.Tray This seems to get the native function…
Kaiser
  • 95
  • 2
  • 8
0
votes
0 answers

Colorbox's close button on IOS's Safari makes the phone think I'm pressing one of its tray buttons

I tested my site out on an iPhone and one of the many problems I encountered was the Colorbox close button not functioning because it would instead bring up some sort of Safari tray. Is there any way around this without making the Colorbox…
Niall Murphy
  • 115
  • 7
0
votes
1 answer

Resize JFace application window after minimizing

I have a JFace application and I'm using a Tray class and a popup menu: public class MyApp extends ApplicationWindow { private TrayItem trayItem; private Menu trayMenu; private MenuItem trayOpenMenu; @Override protected Control…
altralaser
  • 2,035
  • 5
  • 36
  • 55
0
votes
1 answer

PyQt4 tray icon application context menu items don't work

I've got a simple tray icon application, but "About" context menu item doesn't work at all. I'm definitly mising something simple, but important here. The question is what should i fix to see "About" menu item working? import sys from PyQt4 import…
PocketSam
  • 368
  • 4
  • 14
0
votes
1 answer

c++ icon in tray

i used qt to make an application in the tray. on my pc its a good project and i see the icon in the traybar, but when i release it to give it to sombody else they dont see the icon, its just an invissible square that can be used but it dont show the…
stefan
  • 11
0
votes
1 answer

How to find a hidden icon in system tray using FindWindowEx or a similar function?

Is it possible to find a window by class using FindWindowsEx if it's currently hidden in the system tray? Looking for children of ToolbarWindow32 works if the icon is not hidden, but what to do when it is? Thanks.
dennisV
  • 1,119
  • 3
  • 19
  • 34
0
votes
1 answer

LiveCycle Designer - Printer Tray mapping

I'm trying to do so when you print from Adobe Acrobat/Reader it prints to a specific tray/bin in the printer. I just want to change the LiveCycle Design settings and not the Workbench settings. Also, I'm sending a PDF that converts to a PCL and then…
0
votes
0 answers

Why is my tray icon's pop up menu not getting refreshed?

I have a tray icon added to system tray. A popup menu is associated with the tray icon. According to the image set on tray icon, the popup menu should be displayed. Ex: On right click of gray image on TrayIcon, the active menu should come; and for…
Aseet
  • 1
  • 1
0
votes
1 answer

Launching application with parameter -hidden, trayicon crash c#

I found some code to get parameters in my program: static void Main(string[] args) { bool minimalised = false; if (args.Length > 0 && args[0] != null && args[0] == "-hidden") minimalised = true; …
Qentinios
  • 89
  • 1
  • 8