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.
Questions tagged [tray]
175 questions
0
votes
0 answers
how i can get menu item of tray icon which is added by some other class
// TrayUtilitiesDemo is a call which is returning me tray icon create by current java process.
MyMenu.setLabel("MyMenu");
TrayUtilitiesDemo.addPopupMenu(MyMenu);
TrayIcon trayIcon = TrayUtilitiesDemo.getTrayIcon();
System.out.println("TrayIcons are:…

Harpal
- 135
- 1
- 7
0
votes
2 answers
Adobe Air System Tray / Dock Icon Menu Handlers
I'm working on an Air app (JavaScript, not Flex) and I cannot make system tray (dock on Mac) menu handlers to work. I can see my custom menu when I right-click on system tray (dock) icon, but when I click on the menu items, nothing happens, callback…

Kvakes
- 31
- 3
0
votes
3 answers
Getting error while trying to open CD Tray in C++
I cannot seem to be able to open the CD Tray.
It pops me some error with 'extern C' what does extern mean too?
Thanks!
Here's the image!
Error in C++ opening CD Tray

Johnaudi
- 257
- 1
- 23
0
votes
2 answers
Flash ShowMessage(Pos) or any other predefined window in Dialogs unit in Delphi for Post-WInXP OS
This is approach I found for Tray ... :
http://www.programmersheaven.com/mb/delphikylix/257563/257563/how-can-i-make-a-system-tray-flash/
Does the same technique works for Dialogs ( as they are forms with addition params, in fact )?
Or I can do it…

HX_unbanned
- 583
- 1
- 15
- 51
0
votes
2 answers
MenuShortcut KeyEvent not working
The code below is a testable class that should print out some text when control+A has been pushed on the keyboard, and will also display an image in the system tray. This is all dependent on the system tray being supported by your operating…

Tyluur
- 95
- 2
- 10
0
votes
3 answers
c# reshow window by click on notifyicon
I'm new with c# but know c++ and c, my problem is that I can't get my form to show up again after it got minimized to the system tray.
That's the code I used to hide it:
protected override void OnResize(EventArgs e)
{
…

user2513634
- 31
- 6
0
votes
2 answers
Why dosen't add tray icon on not user account?
I want to add tray icon on background process.
BTW, if not user account (e.g. SYSTEM) to run program, not add tray icon.
If using my account, it works.
How to add tray icon by not user account to run program?
NOTIFYICONDATA nid;
ZeroMemory(&nid,…

andwella
- 83
- 2
- 6
0
votes
1 answer
Placing a Tray menu over (above) taskbar
I'm having troubles showing my tray menu above the taskbar. It doesn't matter what I specify as y-position, it only gets against the taskbar at best. The tray menu is a resource.
This is the code I'm using for a rightclick on the systrayicon:
// The…

Anton Lindgren
- 11
- 4
0
votes
1 answer
MFC messageloop in dialog window
i created a MFC dialog application.
now i want to use a messageloop, but i can not find it. I read that mfc will create it for me but that it will be hidden. so how can i manipulate the messageloop?
i need the messageloop to recieve events from my…

Laokoon
- 1,241
- 4
- 24
- 47
0
votes
2 answers
Make an application start in system Tray with windows but normally when run by user?
I have a application that needs to run with windows which I have it successfully doing but I need it to start into the system tray which I also have it doing but this also happens when the user launches it from a desktop icon.
The problem I'm facing…

Craig Smith
- 48
- 1
- 8
0
votes
1 answer
How I can add a Widget or a Region to an Status Icon in PyGTK
This is my first question in StackOverflow, so I would try to explain my self the best I can.
I made an small app trying to emularte the windows Procastination Killer Application, using pygtk and pygame for the sound alerts.
Here is a video of my…

Mario César
- 3,699
- 2
- 27
- 42
0
votes
1 answer
Name of window from tray
I have a rather unusual question, namely, how is called this window from icon tray?
I would like to make it in my application, and I could not find his name. I would ask for some information, or the name, the rest I should have to deal with.

mass043
- 65
- 1
- 7
0
votes
1 answer
How to handle Push notification when app is not in running in background
If app is not in background, push notification came. Clicking on launch button will not show push notification, it will just open app, for opening of that push notification we have to tap again on push notification from notification tray. Any way…

Inder
- 113
- 1
- 2
- 14
0
votes
1 answer
Making a pull out tray - (iOS)
I'm making an iPad app, and basically, I want to make a tray that pulls out from the bottom of my app, and I'd like to have a little tab at the bottom of the screen that if you pull, it brings up an image, and the image's height would match the…

2456789
- 69
- 1
- 10
0
votes
1 answer
Get printer trays from DevMode
In my application I pop a print dialog box that (among other things) enables a user to select the print tray for the front page and a print tray for other pages. I then get the DevMode from the printer object:
LPDEVMODE pDevMode =…

BigBadMe
- 1,754
- 1
- 19
- 27