GUI button question

hey,
i have been surfin the class library web site for a while now and cannot figure out how to make it so that my gui window closes when i push a button(a JButton in a JFrame), can anyone show me how?
-MM

hey,
i have been surfin the class library web site for a
while now and cannot figure out how to make it so
that my gui window closes when i push a button(a
JButton in a JFrame), can anyone show me how?
-MMWould it not be better to use the X(real close button) on the top right of the screen to close the app. If you want to do that then use this code-
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);replace frame with whatever you called your JFrame.

Similar Messages

  • Gui Buttons don't press when upgrading from 1.1.8 to 1.4.0

    We are upgrading an application from 1.1.8 to 1.4.0 and the Gui button's do not work. I believe it is due to some sort of focus problem (and parent windows) but cannot get it to break in a simple test application. Just wondering if anyone else has had gui problems when upgrading to 1.4.0. If I recompile back to 1.1.8 it works great.
    Thanks.

    wow that's odd...almost sounds like you have a transparent window that is over the buttons so it intercepts the mouse events. Would have to see some code but it really sounds like it's the code and not the jvm....if it were, I would think alot of people would be screaming.

  • How to change the Callback function of a GUI button?

    I would like to change the callback function associated with a GUI button dynamically in the programming way.
    Here is the code piece I tried, but it does not seem to work:
    const char* pstrLabelSaveJpeg = "SaveJpegCb";
    SetCtrlAttribute(pahel_id, ctrl_id ,ATTR_LABEL_TEXT, pstrLabelSaveJpeg);
    int CVICALLBACK SaveJpegCb(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
    Solved!
    Go to Solution.

    The attribute you used is about the "label" of the button.
    It is just an appearence attribute. You can write your own name on it, but that does not change the callback function.
    You should change the ATTR_CALLBACK_FUNCTION_POINTER attribute, and you should not pass the function name as a string.
    So your function call will look like this:
    SetCtrlAttribute(pahel_id, ctrl_id, ATTR_CALLBACK_FUNCTION_POINTER, SaveJpegCb);
    Of course, you have to declare the SaveJpegCb function somewhere above that line.
    I think you have already done that.
    S. Eren BALCI
    www.aselsan.com.tr

  • New GUI Buttons

    Hi,
    Besides the existing GUI buttons in Labview, are there any place where new GUIs can be created or downloaded?
    Thanks alot
    From
    Don

    You can easily make your own using the control editor, e.g. cut& paste buttons from any existing windows program (e.g. MS Office) using a screen capture utility and an image editor.
    Also have a look at the openG button controls (see attached image). You can download and install it via the OpenG Commander.Message Edited by altenbach on 03-04-2005 08:31 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    openG-Buttons.gif ‏5 KB

  • Creating the GUI Buttons on Tu0131tle Bar of the Reports

    Hi,
    How can i create the buttons on title bar of my report as CL_GOS_MANAGER?
    the CL_GOS_MANAGER interface is creating a button on title bar of a report to open gos manager popup window.
    i want to do same as this method. i want to create my button.
    Can somebody help me pls?
    Thanks.

    Thank you for your reply,
    i've created a gui button on title bar with this code at INITIALIZATION;
    DATA: lo_container TYPE REF TO cl_gui_gos_container,
            lo_dialogbox TYPE REF TO cl_gui_dialogbox_container,
            lo_toolbar TYPE REF TO cl_gui_toolbar.
      DATA: lo_menu TYPE REF TO cl_ctmenu.
      DATA lt_event TYPE cntl_simple_events.
      DATA ls_event TYPE cntl_simple_event.
      DATA lp_style TYPE i.
      DATA lp_icon TYPE iconname.
      DATA lp_butn_type TYPE tb_btype.
      DATA lp_url(30).
      DATA lp_quick TYPE iconquick.
      DATA lp_nobut TYPE c.
      GET PARAMETER ID 'SGOSNOBUT' FIELD lp_nobut.
      CHECK lp_nobut IS INITIAL.
      lp_style = cl_gui_control=>ws_visible.
    *  IF CL_GOS_STARTER->go_container IS INITIAL.
        CREATE OBJECT lo_container
          EXPORTING
            width             = 58
            no_autodef_progid_dynnr = 'X'
          EXCEPTIONS
            OTHERS            = 5
        CHECK sy-subrc = 0.
        CREATE OBJECT lo_toolbar
          EXPORTING parent = lo_container.
        CALL FUNCTION 'ICON_CREATE'
          EXPORTING
            name       = 'ICON_PDF'
            add_stdinf = space
          IMPORTING
            RESULT     = lp_icon
          EXCEPTIONS
            OTHERS     = 0.
    *    IF gp_frontend = 'ITS'.
    ** insert menubutton
    *      lp_butn_type = 2.
    *    ELSE.
    ** insert menubutton with default
    *      lp_butn_type = 1.
    *    ENDIF.
        lp_quick = text-001.
        CALL METHOD lo_toolbar->add_button
          EXPORTING
            fcode     = '%MY_BUTTON'
            icon      = lp_icon
            butn_type = lp_butn_type
            quickinfo = lp_quick.
    * register events as system events.
        CLEAR lt_event.
        ls_event-eventid = cl_gui_toolbar=>m_id_function_selected.
        ls_event-appl_event = space.
        APPEND ls_event TO lt_event.
        ls_event-eventid = cl_gui_toolbar=>m_id_dropdown_clicked.
        ls_event-appl_event = space.
        APPEND ls_event TO lt_event.
        CALL METHOD lo_toolbar->set_registered_events
          EXPORTING
            events = lt_event.
    *    SET HANDLER on_function_selected FOR lo_toolbar.
    *  ELSE.
    *    CALL METHOD show.
    *  ENDIF.
    *  SET HANDLER on_dropdown_clicked  FOR lo_toolbar.
      call method cl_gui_cfw=>flush.
    but i didn't find where button clicked is falling.
    Thanks again.

  • OK Codes of GUI buttons while GUI recording.

    Hi all,
    I am facing a problem.. While BDC recording of any T-Code OK- Codes of the GUI (PF status) buttons like Cancel, Back and Up are not captured..
    Suppose after recording is done and we run that BDC recording and at any point of time we want to press 'CANCEL' and come out of screen it is not cancelled and goes further to the next screen..
    Please Help.
    Thanks and Regards,

    hi,
    No need to capture gui button function code..
    In SAP 'bend ' function code is used for come out the bdc recording at any step provided by .
    regards
    Gaurav

  • Updateable Report : re-display collection & Update Button question

    This a sequel to a previous Updateable Report question I had.
    Varad pointed me to this doc which has been incredibly helpful .
    http://www.oracle.com/technology/products/database/application_express/
    howtos/tabular_form.html#RESTRICTIONS
    I was\am having the following issue :
    Let's zoom to the part where we create a region to display the tabular form for the previously saved collection , and drill down to the part where we create an UPDATE EMP button for that displayed collection :
    I was not able to display the collection again when I failed the validation a 2nd time. ie, clicking on the UPDATE EMP button after it displays both the errors-post validation and after displaying the collection ( of course) would return me to the previous report pre-collection creation. When I turned debug on I found out that it was not even creating the collection and was hence deleting it before displaying the subsequent page.
    So what I did differently from what the documention instructs is as follows :
    I removed the page reference on the 'branch to page' of the UPDATE EMP button. In my case, the default 'Branch to ' Page after Processing is the same page I am using for this part of the application.
    So when I remove the reference to the page number. for that button, the page is then able to re-create the collection and hence re-display the collection so I can re-fix the 2nd error ( ... and 3rd) and finally update the report .
    Just wondering if anyone else has had the same experience ?
    Thanks !

    The columns and rows have a set format for the Id, so if you know one Id you know the row and the ids of all the other columns.
    As an example, this will show the value of column 6 when you click on any column with the function call in the Element Attributes:
    Script:
    <script type="text/javascript">
    function showCol6(col){
      var col6 = document.getElementById("f06_" + col.id.substr(4,4));
      alert(col6.value);
    </script>Element Attributes:
    onclick=showCol6(this);You could also use a Named Column template, specific to this region, to include the column values directly in the function call, but I think it's best to stick with the ApEx defaults if possible.

  • Next and Previous Button Question

    First my code :)
    import java.util.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.GridLayout;
    import java.lang.Object;
    import java.awt.Image;
    public class Inventory // Main class
    //main method begins execution of java application
    public static void main(String args[])
         int i;
         double totalInventory = 0.0;
         final int dispProd = 0; // variable for actionEvents
         final part[] myPart = new part[4];
         for (i=0; i<4; i++)
                   myPart[0] = new part("Glass Break", 730, 12, 32.19);
                  myPart[1] = new part("Motion", 995, 14, 37.69);
                  myPart[2] = new part("Keypad", 220, 12, 50.69);
                  myPart[3] = new part("Contact", 944, 44, 1.19);
         final JButton firstBtn = new JButton("First");
         final JButton prevBtn = new JButton("Previous");
         final JButton nextBtn = new JButton("Next");
         final JButton lastBtn = new JButton("Last");
         final JLabel label;
         final JTextArea textArea;
         final JPanel buttonJPanel;
         //Add Logo          
         ImageIcon icon = new ImageIcon("javashield.JPG");
                   label = new JLabel("Some Company Inc.", icon, JLabel.RIGHT);
         //Set the position of the text, relative to the icon:
         label.setVerticalTextPosition(JLabel.BOTTOM);
         label.setHorizontalTextPosition(JLabel.CENTER);
         buttonJPanel = new JPanel(); // set up panel
         buttonJPanel.setLayout( new GridLayout(1, 4)); //set layout
              // add buttons to buttonPanel
         buttonJPanel.add(firstBtn);
         buttonJPanel.add(prevBtn);
         buttonJPanel.add(nextBtn);
         buttonJPanel.add(lastBtn);
    textArea = new JTextArea(myPart[3]+" "); // create textArea for product display
         // add total inventory value to GUI
    textArea.append("\nTotal value of Inventory "+new java.text.DecimalFormat("$0.00").format(totalInventory)+"\n\n");
    textArea.setEditable(false);
    JFrame invFrame = new JFrame();
    invFrame.setLayout(new BorderLayout());
    invFrame.getContentPane().add(new JScrollPane(textArea), BorderLayout.CENTER);
    invFrame.getContentPane().add(buttonJPanel, BorderLayout.SOUTH);
    invFrame.getContentPane().add(label, BorderLayout.NORTH);
    invFrame.setTitle("INVENTORY:");
    invFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    invFrame.setSize(350, 350);
    invFrame.setLocationRelativeTo(null);
    invFrame.setVisible(true);
    // assign actionListener and actionEvent for each button
    firstBtn.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent ae)
    textArea.setText(myPart[0]+"\n");
    }); // end firstBtn
    prevBtn.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent ae)
    textArea.setText(myPart[1]+"\n");
    }); // end prevBtn
    nextBtn.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent ae)
    textArea.setText(myPart[2]+"\n");
    }); // end nextBtn
    lastBtn.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent ae)
    textArea.setText(myPart[3]+"\n");
    }); // end lastBtn
    } // end main
    } // end class Inventory6
    class part
       public String partName;
       public int itemNum;
       public double units;
       public double price;
       //default constructor
    public part()
            partName = "";
            itemNum = 0;
            units = 0.0;
             price = 0.00;
        }//end default constructor
         //Parameterized Constructor
    public part( String partName, int itemNum, double units, double price)
            this.partName = partName;
             this.itemNum = itemNum;
             this.units = units;
             this.price = price;
        }//end constructor
         public void setpartName(String partName) {
             this.partName = partName;
            public String getpartName()
                return partName;
        public void setitemNum ( int itemNum )
           this.itemNum = itemNum;
        public int getitemNum()
         return itemNum;
        public void setunits ( double units )
             this.units = units;
         public double getunits()
              return units;
         public void setprice ( double price )
             this.price = price;
         public double getprice()
         return price;
      //calculates product total     
         public double invTotal()
         return (units * price);
    public String toString()
              return "Part:  "+partName+
                        "\nPart Number:  "+itemNum+
                        "\nUnits on hand: "+(int)units+
                        "\nPrice per unit:  $"+price+
                        "\nPart Total:  $"+invTotal();
    //end Class Part
    // Class Part holds Part information
    class Wireless extends part
    private String wlPart; // variable for added feature
    public Wireless(String partName, int itemNum, double units, double price, String addWL)
    // call to superclass  constructor
    super(partName, itemNum, units, price);
    wlPart = addWL;
    }// end constructor
    public void setwlPart(String addWL) // method to set added feature
    wlPart = addWL;
    public String getwlPart() // method to get added feature
    return wlPart;
    public double totalRestock() // method to set value and add restock fee
    return units * price * 0.05;
    public String toString()
    return "Part:  "+partName+
                        "\nPart Number:  "+itemNum+
                        "\nUnits on hand: "+(int)units+
                        "\nPrice per unit:  $"+price+
                        "\nRestock Fee:  $"+totalRestock()+     
                        "\nPart Total:  $"+invTotal();
    } I need to make my next and previous button keep going through the array. They go next or previous one time and stop. I know it is because of the way I wrote the statement
    textArea.setText(myPart[2]+"\n");What I can't figure out is how to make that statement be the current myPart and add 1 to it. I tried textArea.setText(myPart[i]+1+"\n");and it did not work either, I got these errors:
    C:\Inventory\Inventory.java:92: local variable i is accessed from within inner class; needs to be declared final
    textArea.setText(myPart[i]+1+"\n");
    ^
    C:\Inventory\Inventory.java:92: operator + cannot be applied to part,int
    textArea.setText(myPart[i]+1+"\n");
    ^
    2 errors
    So I tried to write {nextItem()}
    and writing a method for next item,
    nextBtn.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent ae)
    nextItem();
    }); // end nextBtn
    lastBtn.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent ae)
    textArea.setText(myPart[3]+"n");
    } // end lastBtn actionEvent
    }); // end lastBtn actionListener
    } // end main
    private static void nextItem();
    if (myPart < myPart[]-1)
         myPart++;
         textArea.setText(myPart[0]);
    }and I get this error
    C:\Inventory\Inventory.java:109: '.class' expected
    if (myPart < myPart[]-1){
    ^
    1 error
    I thought '.class' expected meant I was missing a bracket, but I can't see where I am missing a bracket.
    I feel dumber by the minute.
    Am I not seeing something?

    Another suggestion. First create a non-GUI Inventory class, something like this:
    public class Inventory
        private part[] myPart;
        private int index = 0;
        public Inventory()
            myPart = new part[4];
            myPart[0] = new part("Glass Break", 730, 12, 32.19);
            myPart[1] = new part("Motion", 995, 14, 37.69);
            myPart[2] = new part("Keypad", 220, 12, 50.69);
            myPart[3] = new part("Contact", 944, 44, 1.19);
        public part getPart(int i)
            //TODO fill this in
        public part getFirst()
            //TODO fill this in
        public part getLast()
            //TODO fill this in
        public part getNext()
            //TODO fill this in
        public part getPrev()
            //TODO fill this in
        public double getTotalInventory()
            //TODO fill this in
        // this main is here only to test out the class
        public static void main(String[] args)
            Inventory inv = new Inventory();
            for (int i = 0; i < 4; i++)
                System.out.println(inv.getPart(i));  
                System.out.println();
            System.out.println("getFirst: " + inv.getFirst());
            System.out.println();
            for (int j = 0; j < 6; j++) // deliberately set to be > 4
                System.out.println("getNext: " + inv.getNext());
                System.out.println();
            for (int j = 0; j < 6; j++)
                System.out.println("getPrev: " + inv.getPrev());
                System.out.println();
            System.out.println("getLast: " + inv.getLast());
    }Then use this class as a variable within another class, say InventoryGUI. In this second class, the "next" button would call the Inventory object's getNext() method.

  • How to hide  gui buttons in selection screen

    In Selection screen how to hide buttons like back, exit,cancel buttons.
    can any  one help.

    Hi,
    Create a new GUI Status for your program.. put whatever button you require for it..
    In the AT SELECTION-SCREEN OUTPUT event..
    SET pf-status xxx.
    Regards,
    Anand

  • GUI Development Question

    Hi everybody!
    I'm quite new in ALBPM and I have some questions about it, especially about user interfaces.
    I've been developing JSP aplications (using MVC frameworks) for a long time, and I can't figure out how does it fit in the ALBPM world.
    What's the paradigm for GUI development? At first, I believe the screenflow should act like the controler, the BPM object is the model, and the custom JSPs are the views.
    But... sincerely for me, the Screenflow/BPM object/Custom JSPs seem less flexible than a regular MVC (Struts, JSF, ...)
    My question is: Is it mandatory to use screenflows, or I'm able to use a MVC architecture inside ALBPM? If it's possible how should I implement it?
    For example: I have a custom JSP with some menu items, and this items are links to other JSP pages. This behaviour should
    be modeled using screenflows or can I use another approach? What's the best practice for this task?
    In MVC architecture, the menu will be inside an html form with an action pointing to a servlet (a controller). And what about screenflows?
    Well, I'd like to hear some opinions about this, especially because i'm triyng to get used to BPM paradigm, and in my opinion the best approach for this is hearing from people who had experienced this situation.
    Thanks in advance

    The reason for this is due to our JVM. This application is being developed for an embedded system. There are no swing components in this JVM environment for a couple reasons: size constraints and possible license issues.

  • Good old "Disable brower's Back button" question.

    I don't have to implement it. I am posing this question just out of curosity . Is there a way we can somehow disable Back button on our browser starting second page onwards?
    I recently browsed one site that had "Next" and Previous" buttons on each page. Surprisingly Back button on all the pages was disabled.
    I know, when we open the first page for browsing, Back button is disabled by default. Is there a way we can force browser to treat each and every page as the first page? How did they implement this functionality?
    Thanks.

    If you're using JSPs, simply ensure that they are not being cached by the browser.
    <%
    response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", 0);
    %>Otherwise, there are a couple of ways to do this via Javascript.

  • Disable gui buttons while excuting script

    hi,
    i have class that that calls script in one of methods
        synchronized(this){
             Process p = Runtime.getRuntime().exec("cmd /c start " + script.getCanonicalPath());
             p.waitFor();
        }I'm writting a swing gui above this class..
    This method is quite time consuming, so i use swingworker for this(code above is called from doInBackground() method)
    While i'm calling method above i would like to have buttons on my form disabled,
    so i used this code:
          okButton.setEnabled(false);
          cancelButton.setEnabled(false);
          InitSwingWorker sw = new InitSwingWorker();
          sw.execute();As swing worker finisher buttons are supposed to be enabled again, so i enable them in the done() method of swing worker
    public void done(){
                okButton.setEnabled(true);
                cancelButton.setEnabled(true);
            }And my problem is this:
    buttons disables (that's fine), but they don't stay disabled until executing of script is done. They are enabled right away, i can see that they were disabled for few milis maybe,
    but that's it.
    thanks for any help with this :)

    When you run a "start" command in the command processor it starts a background Windows process and returns immediately. It will probably work if you remove the "start".

  • Please help with the GUI quiz question!

    Hi Folks,
    Please help me with the code for the following GUI.
    The display window of the application should have two panels at the top level (you could have multiple panels contained within a top-level panel). The first top level panel should have a grid or a border layout and should include apart from various label objects: 1) a textfield to store the info entered, 2) a combobox 3) a combobox or a list box , 4) a radio-button group , 5) a combo box 6) checkboxes for additional accessories, and 7) checkboxes .
    The second top-level panel that is placed at the bottom of the window should have a submit button, a clear button and a textarea for output.
    Thanks a lot.

    Please be a little more explicit about what you're doing, what you expect to happen, and what you actually observe.
    Please post a short, concise, executable example of what you're trying to do. This does not have to be the actual code you are using. Write a small example that demonstrates your intent, and only that. Wrap the code in a class and give it a main method that runs it - if we can just copy and paste the code into a text file, compile it and run it without any changes, then we can be sure that we haven't made incorrect assumptions about how you are using it.
    Post your code between [code] and [/code] tags. Cut and paste the code, rather than re-typing it (re-typing often introduces subtle errors that make your problem difficult to troubleshoot). Please preview your post when posting code.
    Please assume that we only have the core API. We have no idea what SomeCustomClass is, and neither does our collective compiler.
    If you have an error message, post the exact, complete error along with a full stack trace, if possible. Make sure you're not swallowing any Exceptions.
    Help us help you solve your problem.

  • GUI/Formatting question

    I have a page where I want to display an image at the top, a scrollable panel in the middle, and a button at the bottom. I get all of these components, but they are all inside of the scroll panel and I don't understand why.
    Here is the code:
    <f:view>
            <html lang="en-US" xml:lang="en-US">
                <head>
                    <meta content="no-cache" http-equiv="Cache-Control"/>
                    <meta content="no-cache" http-equiv="Pragma"/>
                    <title>DisplayDiagnosis Title</title>
                    <link href="resources/stylesheet.css" rel="stylesheet" type="text/css"/>
                </head>
                <body style="-rave-layout: grid">
                    <h:form binding="#{DisplayDiagnosis.form1}" id="form1">
                        <h:panelGrid binding="#{DisplayDiagnosis.centeringGridPanel}" columns="1" id="centeringGridPanel">
                            <h:graphicImage binding="#{DisplayDiagnosis.image1}" id="image1" value="resources/suresmileLogo.JPG"/>
                            <h:panelGrid binding="#{DisplayDiagnosis.diagnosisPanel}" columns="3" footerClass="" id="diagnosisPanel">
                                <div style="height: 250px; width: 400px; overflow: auto">
                                </div>
                            </h:panelGrid>
                            <h:panelGroup binding="#{DisplayDiagnosis.groupPanel1}" id="groupPanel1" style="height: 50px; width: 100px">
                                <h:commandButton binding="#{DisplayDiagnosis.button1}" id="button1" onclick="history.back(); return false" value="Back"/>
                            </h:panelGroup>
                        </h:panelGrid>
                    </h:form>
                </body>
            </html>
        </f:view>How should this look in order to get the image above the scroll panel and the button below it?
    Note that I tried surrounding the DiagnosisPanel (the only one I want to scroll) with the div tag, but that didn't do what I expected.
    In short, how do I get the DiagnosisPanel to be the only thing that scrolls?
    Thanks.

    Well that didn't come out too well (the code tag didn't seem to work right).
    Here is my question posted on another site (JavaRanch) where everthing can be read correctly:
    http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&f=82&t=000546

  • GUI class question

    Hi guys I use the NetBeans 6.0 and i build a project which has 2 Source packages on is my number game and the other I called GUI. In the GUI source package I drew a diagram which I want to use as my GUI to my number game but I don't know how to connect them. Now my question is this is it possible to connect them since they are in different packages? And my second queston is where should I code the action listenrs and where the event handler couse I am really new to gUI and that is my first one. Btw does net beans 6 provide some form of facility to join them both without much code? Thanks in advance!

    1.I would say that using packages in this case is bad, but i wont since everyone else here thinks its always good. I would just use plain .java/.class files in the same directory so that they have free access to each other and the other files.
    2. To use actions listener you first make your main class implement ActionListener, then addActionListener(this) to all your components that catch events, then use public void actionPerformed(ActionEvent e) to handle any events.

Maybe you are looking for

  • Can you transfer an album you have on macbook pro to ipad wirelessly?

    Hi everyone, as the question says can you transfer an album or selected photos from macbook pro to ipad and visa versa, wirelessly? If so how do you do it? Thanks.

  • PPCI - Problem in Creating Infotype

    Hello Expert, I want to create OM custom infotype,but in T.code - PPCI afte entering necessary entries when clicked on Create m getting follwing log .Please let me know whether i am doing any mistake : Infotype 9501        Dictionary            Struc

  • Time Operations and Infotype 2002

    hi Is there an operation to reterive attendacne hours in infotype 2002 . Currently we are using HRS but it fetches from Planned working time .(HRS=PNUM. This is used for overtime calculation (negative time manegment ) Alos if there isany  alternate s

  • How can I change DIR_TRANS parameter

    Hello, I have recently installed Trial ABAP NW7 version. I need to import several transports and need to configure TMS. I can not figure how to change value for DIR_TRANS parameter. When I go to AL11, it does not allow me to change it. Thanks, Alex

  • X-fi Xtrememusic humm

    Hello. This is my first time posting here. I red the FAQs and all, but couldn't find the solution for my problem. Today when i turned on my computer, humming and some weird noises started to come out from the speakers and the subwoofer. Here is a sam