How to create system tray

hey,
have created my appln but wanted to put it as system tray icon and poping up when clicked.
Could you please help me with some class files or JAR ?
Thanks!!!
Shan

http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/systemtray/

Similar Messages

  • How to Create SYSTEM GROUP in XI

    Hi, all
    My question is how to create system group in XI 3.0
    I goto RZ21 then Technical Infrastructure --> Configure Central system --> Maintain system Group
    Then Create system Group name ExchangeInfrastructure_System
    After Hit enter, its not look like group, it look like subgroup entry... why? how to create group
    please tell me...
    I am sending screen shot how its look like
    Thanks
    http://www.flickr.com/photos/25222280@N03/?saved=1
    http://www.flickr.com/photos/25222280@N03/2439104310/

    Hi,
    refer the below help
    http://help.sap.com/saphelp_nw04/helpdata/en/e5/5d1741b393f26fe10000000a1550b0/frameset.htm
    Thanks,
    RamuV

  • How to create system message in SAP EP?

    Dear All,
    How to create system message in SAP EP?
    i need to find solution for this task. Is there any way without collaboration? For example in SLD there is "System message" without additional functions. Please help.
    Portal installed on Netweaver 7.01 EHP1

    Hi Abay,
    You need to develop custom application to accomplished your requirement for system message in the potral.
    Please have a look at "Brodcast messages to logged on users in Portal:
    Brodcast messages to logged on users in Portal(Part1)
    Brodcast messages to logged on users in Portal(Part2)
    Also you can develop system message in the KM and integrate in the portal.
    Hope it will helps,
    Regards, Arun Jaiswal

  • How we create system for Bex query

    Hi
    I want to access Bex query in VC , I think we can do this by creating system in poratl. pls tell me how we  create system in prtal for this.
    Regards
    Amit

    Hi Naresh,
    Pls send the Document for me also.
    This is my mail id: [email protected]
    Thanks & Regards
    Prakash T

  • How to create a tray on a dynpro? NOT Web Dynpro!

    Hi there,
    I need to know how to create a gui container which you can show and hide by clicking a button like the way you use a tray in BSP or Web Dynpro. I am working on an ABAP system 6.20
    Can anybody help me, please?
    Kind regards,
    Daniel

    Hello there,
    I have the solution of creating trays in dynpros!
    It is really easy...
    You have to define subscreens on your main dynpro. After that, create for each subscreen area 2 dynpros. One has the content (fields, etc.) and the other one is empty.
    Create a button for each of the subscreens and give them function codes. In PAI you have to check which subscreen is shown and so you can switch to the other. The gui engine will arrange them automatically and it will look like a tray!
    Regards,
    Daniel

  • What is System & How to Create System in EP?

    Hi,
       I wants to know about the System?If anyone have pdf on this can u refer me?I wants to create System in EP How is it Possible?
    Thns n Regds
    Madhav Mishra

    Hi,
    it often helps, when you type your search topic into
    http://help.sap.com
    Like this one with search keyword "System" for SAP Netweaver in english:
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/35/4cf72bfe18455e892fc53345f4f919/frameset.htm">SYSTEM in SAP Help</a>
    the sub-links in the Help explains how to set up systems and alias in SAP Portal

  • How to create 'system' in Portal for backend

    Hi Basis Gurus,
    Please let me know how to create a 'system' for a backend system in Portal 'system administration'       --> 'system configuration' --> 'system landscape'.
    i.e. which properties I need to fill up, assuming the backend system is release 700 ABAP system and Portal is at release 640.
    Thanks & Regards,
    Kunal.

    Hi,
    Please check the following links..
    [Creating Systems|http://help.sap.com/saphelp_nw70/helpdata/EN/ec/0fe43d19734b5ae10000000a11405a/content.htm]
    [Editing Systems|http://help.sap.com/saphelp_nw70/helpdata/EN/42/11e43d19734b5ae10000000a11405a/content.htm]
    Regards,
    Murthi...

  • How to create a Tray dynamically

    Hi All
    I have tried to develop a method where I can create a tray dynamically.  I have embedded this code in the method WDDOINIT of my View called 'MAIN_VIEW'.   My longer term plan is to create x number of trays where x is dictated by the number of entires in an Internal Table.
    The code I have written compiles, but nothing appears where I thought it would.  Can anyone spot what I have so fundementally missed?
    Assistance is sincerely appreciated.
    Regards
    Tony
    create object wd_this->all_in_one_util.
    data: node_input  type REF TO if_wd_context_node,
          elem_input  TYPE REF TO if_wd_context_element,
          stru_input type if_main_view=>element_input.
    data: lr_view                type ref to cl_wdr_view,
          lr_tray   type REF TO CL_WD_TRAY,
          tray_id  type string,
          lr_caption             type ref to cl_wd_caption,
          caption_id             type string,
          lr_grid_data           type ref to cl_wd_grid_data,
          lr_grid_layout         type ref to cl_wd_grid_layout.
    *Navigate from <CONTEXT> to <INPUT> via lead selection
    node_input = wd_context->get_child_node( name = if_main_view=>wdctx_input ).
    lr_tray = cl_wd_tray=>new_tray(
        EXPANDED                 = ABAP_TRUE
        ID                       = tray_id
        VIEW                     = lr_view  "'MAIN_VIEW'
        WIDTH                    = '100%'
            set the caption of the tray
              concatenate lr_tray->id '_HEADER' into caption_id.
              lr_caption = cl_wd_caption=>new_caption(
                             id   = caption_id
                             text = 'text goes here'
                             view = lr_view ).
              lr_tray->set_header( lr_caption ).
            create the grid layout data for tray
              lr_grid_data = cl_wd_grid_data=>new_grid_data( lr_tray ).
            assign the layout data to the tray
              lr_tray->set_layout_data( lr_grid_data ).
            create a new grid layout for the content of the tray
              lr_grid_layout = cl_wd_grid_layout=>new_grid_layout( lr_tray ).
            assign the grid layout to the tray
              lr_tray->set_layout( lr_grid_layout ).

    Hi Tony,
    If we have to do any dynamic programming in webdynpro( creating UIelements dynamically ), WDDOMODIFYVIEW is the method where we need to code the logic for creating the tray.
    But you have done the coding of creating tray in WDDOINIT thats why it is not working fine. Just the have the same code in WDDODMODIFYVIEW and you need to have below code to add this tray to view's ROOTUICONTAINER.
    data:  lr_container TYPE REF TO cl_wd_uielement_container.
    lr_container ?= view->get_element( 'ROOTUIELEMENTCONTAINER' ).
      " View is import parameter of wddomodifyview method.
    lr_container->add_child( '' pass the tray that is created ' ).
    This is the way to create dynamic UIelements in webdynpro using wddodmodifyview
    For more information on dynamic programming have at following information
    <a href="http://help.sap.com/saphelp_crm50/helpdata/en/44/2d9a41ed79a009e10000000a155106/frameset.htm">http://help.sap.com/saphelp_crm50/helpdata/en/44/2d9a41ed79a009e10000000a155106/frameset.htm</a>
    Thanks,
    Prashanth Kumar B

  • How to display System Tray Pop up in MAC OS?

    Hi all,
    I need a simple solution for MAC application...
    I want to display a System Tray Pop up on some event
    Can anybody help me out in this?
    Thanks in advance.

    Hi,
    yet it works fine, see following code fragment
    public class Main {
        public static void main(String[] args) {
            try {
                if (SystemTray.isSupported()) {
                    TrayIcon trayIcon = new TrayIcon(Toolkit.getDefaultToolkit().getImage("duke.gif"));
                    SystemTray.getSystemTray().add(trayIcon);
                    trayIcon.displayMessage("Look!", "I've got some news for you", TrayIcon.MessageType.INFO);
                } else {
                    throw new RuntimeException("SystemTray not supported");
            } catch (AWTException e) {
                e.printStackTrace();
    }

  • How to create System component in solution manager

    Dear Experts,
    How to Add a new (Custom) system component in solution manager which is used for service desk and also how to replicate the same component while creating  support message (i.e., in F4-help for component filed).
    Thanks in Advance.
    Thanks and Regards,
    *bold* Thirukumaran. R *bold*

    check this blog:
    /people/dolores.correa/blog/2007/10/06/service-desk-solution-database
    basically it is at:
    IMG under SAP Solution Manager -> Configuration ->  Scenario-Specific settings -> Service Desk -> Solution Database
    Nesimi

  • How to Create System messages in BW

    I want to create a System message in BW.
    Please let me know.
    Thanks
    Prasanna

    Hi Prasanna,
    Use the T- Code SM02.
    hope this helps

  • How to customize system tray icons in Windows 10 technical preview?

    I couldn't find a way to make these show or hide all the time:
    What am I missing?

    If the sofftare is pinned to the taskbar, one must insure that it is unpinned.
    Here I have changed the odious icon on the file Explorer.
    Renee
    "MODERN PROGRAMMING is deficient in elementary ways BECAUSE of problems INTRODUCED by MODERN PROGRAMMING." Me

  • System Tray application

    I am using the Java 6 feature for creating System Tray capable applications.
    I have used the SystemTray.java example from Sun and this works fine.
    What I need to know is how I hide the application in the Task Bar. The user would then need to click the System Tray icon, for the application, to bring the application back up again.
    I look forward to someones help.

    Here's what would you do in your application:
    to make it disappear on minimize:
              applicationFrame.addWindowListener (new WindowAdapter () {
                   public void windowIconified (WindowEvent e) {
                        setVisible (false);
              });and a mouse listener to your TrayIcon to show it again on left click:
                   trayIcon.addMouseListener (new MouseAdapter () {
                        public void mouseClicked (MouseEvent e) {
                             if (e.getButton () == e.BUTTON1)
                                  applicationFrame.setVisible (true);
                   });And I'd suggest you to take a look here about window listeners
    http://java.sun.com/docs/books/tutorial/uiswing/events/windowlistener.html

  • Solution Directory -- Create System for Solution Monitoring

    Hi Experts,
    I created an ERP solution in SolMan but I don´t know how to create systems DEV, QAS and PRD as graphics for process monitoring.
    I allready configured in SMSY the systems, RFCs and logical component.
    Regards.

    Hi,
    I would suggest to go through http://service.sap.com/rkt-solman for your Solution Manager release.
    It provide complete details regarding benefits and configuring solution manager services including Solutin Monitoring as well.
    Hope it helps.
    Regards,
    Srikishan

  • How to create recovery discs for HP notebook with preinstall​ed Windows ?

    I Have just bought the  HP ProBook 4530s with preinstalled Windows 7 Home Premium 64bit.
    The notebook was purchased in the hipermarket so that it has no Windows installation discs.
    There is a Windows 7 label sticked to the machine.
    When I try to use standard Windows 7 procedure:
    Start  > Control Panel > Backup Your Computer > Create a system repair disc 
    it shows the error: 
    System Repair disc could not be created
    the parameter is incorrect 0x80070057
    How to create system recovery discs ?
    BR
    Sylwek

    Hi BH,
    I have read the link you suggested and tried to find HP Recovery Manager at my notebook.
    1) I typed Start > Search > "Recovery" but it was not installed.
    2) I  ran the HP Software Setup to check recommended and optional HP applications. HP Recovery Manager was not there.
    3) I downloaded HP Recovery Manager for Windows 7 and ran the installation
    I accepted the default folder.
    C:\SWSetup\sp45415
    It showed an installation form for a while and then completed with no message.
    4) I repeated action (1) but no HP Recovery Manager.
    5) I checked uninstall menu but no HP Recovery Manager.
    Please let me know what to do next ?
    BR
    Sylwek

Maybe you are looking for