• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

adding icons to system tray

 
Ranch Hand
Posts: 72
Eclipse IDE Firefox Browser Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For my java application I need to add an icon to system tray.
I don't know how to do it!!
thanks
 
Trailboss
Posts: 24072
IntelliJ IDE Firefox Browser Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I've never even heard of "system tray" - what is that? Which JDK are you using?
 
Desperado
Posts: 3226
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
System tray is a Win32 "thing". It's the place in the bottom right of Windows desktops with those little icons like the clock, the telephone (modem) and speaker (volume control)... etc.
 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't beleive this is possible. The Java is platform independant, so will not have functions specific to windows.
An alternative way to do it would be to write a small 'C' library which will do the stuff you want 'cause you can call a 'C' library from Java.
Altenatively, if you know what the function is in the WinAPI dll, you might be able to call that directly. Unfortunately, I don't know what the function is, or which dll it would be in.
Dave Smith
 
reply
    Bookmark Topic Watch Topic
  • New Topic