Want to stop for opening multiple frames ????

Dear i am working on an application .
in that there is a frame ok in that frame there is a button.
so when u click on that button a new frame will open ok now the problem is that.
suppose u click 5 times on that button so that button will open 5 same type of frames.
so i dont want to open more then 1 frame so pl help me .i cant find out how to stop to open more then 1 frame.
here is a code of 1st frame . which have a button ok
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.border.*;
public class bookdata implements ActionListener
     JFrame frame;
     JLabel label;
     JPanel panel , panel2 , panel3;
     JButton but1,but2,but3,but4,but5,but6;
     Color cc;
     BoxLayout bak;
     ImageIcon icon;
     FlowLayout flo;
     public bookdata()
          icon = new ImageIcon("book/book.jpg");
          frame = new JFrame("Book Database");
          //frame.setResizable(false);
          frame.setIconImage(new ImageIcon("book/logo.gif").getImage());
          Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
          int x = (d.width - 550)/2;
          int y = (d.height - 500)/2;
          frame.setBounds(x,y,400,300);
     public void main1()
          JLabel label = new JLabel(icon);
          flo = new FlowLayout();
          panel3 = new JPanel();
          but1 = new JButton("NEW BOOK");
          but2 = new JButton("EDIT");
          but3 = new JButton("DELET");
          but4 = new JButton("SHOW");
          but5 = new JButton("LONE");
          but6 = new JButton();
          but1.addActionListener(this);
          panel = new JPanel();
          bak = new BoxLayout(panel,BoxLayout.Y_AXIS);
          panel.setLayout(bak);
          // 1st 220 is for R
          // 2nd 177 is for G
          // 3rd 162 is for B
          // 4th 255 is for Alpha
          cc = new Color(51,51,255);
          panel2 = new JPanel();
          panel2.setLayout(flo);
          panel2.setBackground(cc);
          panel2.add(label);
          JSeparator hh = new JSeparator(SwingConstants.VERTICAL);
          SpringLayout layout = new SpringLayout();
          panel3.setLayout(layout);
          panel3.add(but1);          // pp1
          panel3.add(but2);          // pp2
          panel3.add(but3);          // pp3
          panel3.add(but4);          // pp4
          panel3.add(but5);          // pp5
          //ActionListenet Calling
          layout.putConstraint(SpringLayout.WEST,  but1, 15,SpringLayout.WEST,  panel3);          // pp1
         layout.putConstraint(SpringLayout.NORTH, but1, 25,SpringLayout.NORTH, panel3);
          layout.putConstraint(SpringLayout.WEST,  but2, 15,SpringLayout.WEST,  panel3);          // pp2
         layout.putConstraint(SpringLayout.NORTH, but2, 55,SpringLayout.NORTH, panel3);
          layout.putConstraint(SpringLayout.WEST,  but3, 15,SpringLayout.WEST,  panel3);          // pp3
         layout.putConstraint(SpringLayout.NORTH, but3, 85,SpringLayout.NORTH, panel3);
          layout.putConstraint(SpringLayout.WEST,  but4, 15,SpringLayout.WEST,  panel3);          // pp4
         layout.putConstraint(SpringLayout.NORTH, but4, 115,SpringLayout.NORTH, panel3);
          layout.putConstraint(SpringLayout.WEST,  but5, 15,SpringLayout.WEST,  panel3);          // pp5
         layout.putConstraint(SpringLayout.NORTH, but5, 145,SpringLayout.NORTH, panel3);
          layout.putConstraint(SpringLayout.WEST,  label, 60,SpringLayout.WEST,  panel3);
         layout.putConstraint(SpringLayout.NORTH, label, 100,SpringLayout.NORTH, panel3);
          frame.getContentPane().add(panel);
          panel.add(panel2);
          panel.add(panel3);
          frame.setSize(600,500);
          frame.setVisible(true);
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
     public void actionPerformed(ActionEvent e)
          Object obj = e.getSource();
          if(obj == but1)
               newbook nebook = new newbook();
}

Dear i am working on an application .
in that there is a frame ok in that frame there is a
button.
so when u click on that button a new frame will open
ok now the problem is that.
suppose u click 5 times on that button so that button
will open 5 same type of frames.
DO U WANT TO COME AGAIN ON THE PARENT FRAME.IF NOT THAN
parentFrame.setVisible(false);
if yes then ................
so i dont want to open more then 1 frame so pl help
p me .i cant find out how to stop to open more then 1
frame.
here is a code of 1st frame . which have a button
ok
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.border.*;
public class bookdata implements ActionListener
     JFrame frame;
     JLabel label;
     JPanel panel , panel2 , panel3;
     JButton but1,but2,but3,but4,but5,but6;
     Color cc;
     BoxLayout bak;
     ImageIcon icon;
     FlowLayout flo;
     public bookdata()
          icon = new ImageIcon("book/book.jpg");
          frame = new JFrame("Book Database");
          //frame.setResizable(false);
frame.setIconImage(new
ew ImageIcon("book/logo.gif").getImage());
Dimension d =
= Toolkit.getDefaultToolkit().getScreenSize();
          int x = (d.width - 550)/2;
          int y = (d.height - 500)/2;
          frame.setBounds(x,y,400,300);
     public void main1()
          JLabel label = new JLabel(icon);
          flo = new FlowLayout();
          panel3 = new JPanel();
          but1 = new JButton("NEW BOOK");
          but2 = new JButton("EDIT");
          but3 = new JButton("DELET");
          but4 = new JButton("SHOW");
          but5 = new JButton("LONE");
          but6 = new JButton();
          but1.addActionListener(this);
          panel = new JPanel();
          bak = new BoxLayout(panel,BoxLayout.Y_AXIS);
          panel.setLayout(bak);
          // 1st 220 is for R
          // 2nd 177 is for G
          // 3rd 162 is for B
          // 4th 255 is for Alpha
          cc = new Color(51,51,255);
          panel2 = new JPanel();
          panel2.setLayout(flo);
          panel2.setBackground(cc);
          panel2.add(label);
JSeparator hh = new
ew JSeparator(SwingConstants.VERTICAL);
          SpringLayout layout = new SpringLayout();
          panel3.setLayout(layout);
          panel3.add(but1);          // pp1
          panel3.add(but2);          // pp2
          panel3.add(but3);          // pp3
          panel3.add(but4);          // pp4
          panel3.add(but5);          // pp5
          //ActionListenet Calling
layout.putConstraint(SpringLayout.WEST,  but1,
1, 15,SpringLayout.WEST,  panel3);          // pp1
layout.putConstraint(SpringLayout.NORTH, but1,
but1, 25,SpringLayout.NORTH, panel3);
layout.putConstraint(SpringLayout.WEST,  but2,
2, 15,SpringLayout.WEST,  panel3);          // pp2
layout.putConstraint(SpringLayout.NORTH, but2,
but2, 55,SpringLayout.NORTH, panel3);
layout.putConstraint(SpringLayout.WEST,  but3,
3, 15,SpringLayout.WEST,  panel3);          // pp3
layout.putConstraint(SpringLayout.NORTH, but3,
but3, 85,SpringLayout.NORTH, panel3);
layout.putConstraint(SpringLayout.WEST,  but4,
4, 15,SpringLayout.WEST,  panel3);          // pp4
layout.putConstraint(SpringLayout.NORTH, but4,
but4, 115,SpringLayout.NORTH, panel3);
layout.putConstraint(SpringLayout.WEST,  but5,
5, 15,SpringLayout.WEST,  panel3);          // pp5
layout.putConstraint(SpringLayout.NORTH, but5,
but5, 145,SpringLayout.NORTH, panel3);
layout.putConstraint(SpringLayout.WEST,  label,
l, 60,SpringLayout.WEST,  panel3);
layout.putConstraint(SpringLayout.NORTH, label,
abel, 100,SpringLayout.NORTH, panel3);
          frame.getContentPane().add(panel);
          panel.add(panel2);
          panel.add(panel3);
          frame.setSize(600,500);
          frame.setVisible(true);
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE)
     public void actionPerformed(ActionEvent e)
          Object obj = e.getSource();
          if(obj == but1)
               newbook nebook = new newbook();

Similar Messages

  • I downloaded Mozilla when I first got my Mac.Is it a better than Safari?I tried Safari and I did not care for it. So can I still use cmd t or cmd n for opening multiple sites?

    I downloaded Mozilla firefox when I first got my mac as I did not like safari.Thah being said,which is better? and lastly can I still use cmd t or cmd with firefox for opening multiple sites? Thanks,Ralph

    You need to visit this page and learn all about Firefox's awesome features, don't ignore the add-ons, toolbar>customize or persona's they really personalize Firefox.
    http://www.mozilla.org/en-US/firefox/central/
    Also you need to make sure your browser plugins are current for your whole machine, Safari included.
    http://www.mozilla.org/en-US/plugincheck/
    I hope one day Apple will make Safari as awesome as Firefox and allow the choice it has, but not today.

  • Menu or keystroke for opening multiple projects simultaneously?

    Pages 52-53 of the Getting Started Guide describe how to open multiple projects using the mouse and keyboard together.
    It wasn't obvious to me from the user interface that you could even do that, until reading that part of the manual. Has anyone found a keystroke or a menu (or popup menu) that will let you open multiple projects like this (in tabs or separate browsers)? Or do you always have to do the Option/Command-click thingy? (Right-clicking on a project both selects a project and has no menu items for opening the project, which is not what I would expect.)

    Pages 52-53 of the Getting Started Guide describe how
    to open multiple projects using the mouse and
    keyboard together.
    It wasn't obvious to me from the user interface that
    you could even do that, until reading that part of
    the manual. Has anyone found a keystroke or a menu
    (or popup menu) that will let you open multiple
    projects like this (in tabs or separate browsers)? Or
    do you always have to do the Option/Command-click
    thingy? (Right-clicking on a project both selects a
    project and has no menu items for opening the
    project, which is not what I would expect.)
    I don't think there is a key combo for that, I think the mouse is the only path. Scrolling up or down in the project list always goes to the next project and no modfier keys seem availiable to leave the previous one open... I would be tricky because it would be hard to have a good interface that would let you select non-adjoining projects (since you'd have t skip over other ones without making them active).

  • Stop firefox opening multiple update tabs automatically

    Hi there I'm having trouble with firefox opening up auto update tabs by itself. When you are on any site after about 5 seconds a new tab opens requesting you to auto update my video player. Then 5 seconds later another tab opens saying the same thing. and again. and again and so on perpetually. If left unattended for two minutes 85+ tabs will have opened. I am running firefox 30 on windows 7. I have found a temporary fix is to reset firefox. This works for a few days and then the update will occur 5-10 times in a session and then stop. Then a few days later it reaches critical mass and hijacks firefox, tab after tab after tab.
    I would like to have gotten a screen shot but the reset lost the tabs. I don't think the problem will have shown in the troubleshooting diagnostic (mainly due to the reset). I have gone through my history and have managed to get the common URLs of the tabs.
    An occasional one
    Install in a Flash http://lp.sharelive<i></i>.net/?sysid=406&appid=1154&lpid=2883&subid=0081487796556604012
    An occasional one (that I don't have a URL for) is your firefox video player may be out of date please check to see the latest version. I click on the apply and install button and it links me to Video Player Recommended http://www.lpmxp2016<i></i>.com/6E29324C312E33517057256558763C2FA181039CFE41D8B572BE703BC40F1AFB45E301310E1D0C1782598A403ED704FC?tgu_src_lp_domain=www.ultimateplayersetup<i></i>.com&CID=274930&ClickID=07_12005543_aa8381ee-014e-4747-8386-21904dcce45b&AffliateReferenceID=OTF8MzIwOXxBVXwyfDF8fA
    Another occasional one
    Install in a Flash http://lp.sharelive<i></i>.net/?sysid=406&appid=1154&lpid=2883&subid=0081487796556604012
    Another occasional one
    Offer http://clkmon<i></i>.com/static/lprdr.html?r=http%3A%2F%2Flp.sharelive<i></i>.net%2F%3Fsysid%3D406%26appid%3D1154%26lpid%3D2883%26subid%3D0081487796556604012
    One of the more prolific
    Download VLC Player http://www.onefloorserve<i></i>.com/VLC/lp1.aspx?appId=335717&source=saymedia_1fa&cid=273021&clickid=07_11728158_b4d3e85d-4125-48da-b75c-7c0dc50e5af8
    One of the more prolific
    1Player http://www.onefloorserve<i></i>.com/lps/player_lp7.aspx?appId=339032&source=saymedia_1fa&cid=277984&clickid=07_11728149_d772e93e-ffda-4d8a-8d4e-16dd2b91f4dc
    One of the more prolific
    Video Player Recommended http://www.lpmxp2017<i></i>.com/3D47345752317B4C21753046437649629852665CDE1580523D7CF3B5A0C54C81B5742D4921BEEE755BD11A6BCC59CDE0?tgu_src_lp_domain=www.ultimateplayersetup<i></i>.com&CID=274930&ClickID=07_11728221_307d54a4-a760-4345-a66c-b324eed6e5f0&AffliateReferenceID=OTF8MzQ0OXxBVXwyfDF8fA
    One of the more prolific
    Please Update to the Latest Version http://www.lpmxp2017<i></i>.com/2378404779436B40657C70674D262053FC84823728C5E60FC131B6089B40884DEE657F2A41E779910CB63298C57A3116?tgu_src_lp_domain=www.ultimateplayersetup<i></i>.com&CID=274546&ClickID=07_11790200_65a8241e-09cd-43a3-b451-2b21533c1292&AffliateReferenceID=OTN8NDMyNnxBVXwyfDF8fA
    A common variant
    1Player http://www.onefloorserve<i></i>.com/lps/player_lp8.aspx?appId=339033&source=saymedia_1fa&cid=277992&clickid=07_11800247_6eb3dc39-4717-412b-8138-45204c0ad363
    Another one
    Please Update to the Latest Version http://www.lpmxp2016<i></i>.com/5870494A472D7C6636547E5F5A337B6B5BB218B9DB583B83A898A86EEF2E49732FE672124E77A0568DCF43D9F0DAF327?tgu_src_lp_domain=www.ultimateplayersetup<i></i>.com&CID=274931&ClickID=07_11976377_fea87410-eb92-4004-a5fb-d58db3f6fbb3&AffliateReferenceID=OTF8MzE4MXxBVXwyfDF8fA
    During all this going on is a program file download/install box is appearing asking if I want to save the file. Its 1.2 meg entitled player_setup.exe from download source http://kyle.mxp2203<i></i>.com/I2ETeZ9CRw3yY0pXQgCz3Ks7vFKYiPYoWpVJ7FDEM_LNTKNN4VpnFBNK408G1M9qRBUoGCRE1XTI-LPLDH-vsA-jFn3DLSvbup3AAcZaR3XjA8bbIoFhtsDY4dpBIl6j
    I thought if I downloaded the file and ran it then the messages would disappear. The file was a media player file associated with multiple advertising addons that would be installed if you did a typical install. I did a custom install and only installed the player. This did not stop the problem. The tab thing remained. I have uninstalled the program. The problem existed a few weeks before I did this so installing was not a trigger for further attacks.
    I have discovered that resetting firefox also breaks a few links. I have to re-allow popups and re-enable my java plugins. I am enrolled in a tafe course and it also runs a diagnostic. This is what it checks.
    Skillsoft Browser Capabilities Check.
    Your browser results have been saved to our server and can be
    accessed for the next 30 days using this URL.
    http://browser.skillport<i></i>.com/bh/results.asp?resultsid=%7BCA2FAAE1%2D1E93%2D4B5B%2D81EA%2DB7D02252DB2B%7D
    User Details.
    Your e-mail damo74@iinet<i></i>.net.au
    IP Address 124.171.39.176
    Approximate Connection Speed 895 kbps
    Date and Time of Test 02 Jul 2014 00:46:41
    Proxy Via
    Combined Technical Specifications (20140520)
    This test checks compatibility for a combined specification of SkillSoft Course
    Player, Simulation Player and SkillPort
    Test Operating System
    Result Pass
    Your Computer Microsoft Windows 7
    Test Browser Type
    Result Pass
    Your Computer Firefox
    Test Browser Version
    Result Pass
    Your Computer 30.0
    Test Adobe Flash
    Result Pass
    Your Computer 13.0 r0
    Test Java Environment
    Result Pass
    Your Computer Oracle Corporation
    Version 7.0 Update 60 (1.7.0_60)
    Test PopUp Blocker
    Result Pass
    Your Computer No PopUp Blocker Detected.
    I have checked my plugins and have received the following text
    Plugin Status
    Step 1: Click Update to update a plugin.
    Step 2: Complete all recommended updates before restarting your browser.
    Potentially vulnerable plugins Plugin Status Action
    Shockwave for DirectorAdobe Shockwave for Director Netscape plug-in, version 11.6.3.633 vulnerable
    11.6.3.633
    Update Now
    Shockwave FlashShockwave Flash 13.0 r0 vulnerable
    13.0.0.214
    Update Now
    Unknown Plugins Plugin Status Action
    Microsoft Office 2010The plug-in allows you to open and edit files using Microsoft Office applications unknown
    14.0.4761.1000
    Research
    Windows Live™ Photo GalleryNPWLPG unknown
    15.4.3538.513
    Research
    PicasaPicasa plugin unknown
    3.0.0.0
    Research
    globalUpdate UpdateglobalUpdate Update unknown
    1.3.25.0
    Research
    These plugins are up to date Plugin Status Action
    Adobe AcrobatAdobe PDF Plug-In For Firefox and Netscape 10.1.9 Up to Date
    10.1.9.22
    Up to Date
    Silverlight Plug-In5.1.30214.0 Up to Date
    5.1.30214.0
    Up to Date
    Java Deployment Toolkit 7.0.600.19NPRuntime Script Plug-in Library for Java(TM) Deploy Up to Date
    10.60.2.19
    Up to Date
    Java(TM) Platform SE 7 U60Next Generation Java Plug-in 10.60.2 for Mozilla browsers Up to Date
    10.60.2.19
    Up to Date
    On top of the plugin assessment was a warning from firefox. "Firefox has prevented the unsafe plugin "java deployment toolkit" from running on www.mozilla.org continue blocking / allow. I chose to continue blocking.
    I had a bit more of a look at my plugins through the add-on manager. Java deployment toolkit 7 was installed. And came up with a warning message that Java deployment toolkit 7 was vulnerable. On checking for more information I get diverted to
    Add-ons for Firefox
    Blocklist
    Java Deployment Toolkit (click-to-play)
    Java Deployment Toolkit (click-to-play) has been blocked for your protection.
    I have since disabled the plugin.
    Can you shed any light on what is going on or have I stumbled across the solution by disabling the toolkit.
    Hopefully we can address the issue before it gets hijacked again.
    Please help cos I get really frustrated when it gets hijacked and I have to reset.

    Kindly check the addons in your firefox
    Tools > Addons
    Remove or Disable all unwanted / suspicious ones.
    Then try to browse again. See if the problem comes again.

  • Need solution for opening multiple connection to server in parallel

    Hi..
    I have used URL and URLConnectin classes to open connection to server,
    and i used URLConnection.getInputStream( ) to download HTML pages.
    Now my requirement is to open more than one connecton to single HTML document and download the file in parallel.
    for example, if the HTML file size is 60KB..then i open three connection and
    connection 1 downloads first 20KB
    connection 2 downloads second 20KB
    connection 3 downloads final 20KB
    all the above should be done in parallel....by threading or else..
    first of all i want to know is it possible to do the above in java?
    anybody having solution for the above requirement?
    venu

    hi,
    i too have the same problem
    actually i am designing a download manager ,and had the same problem
    that how to put multiple threads for doing it ,,,,
    have u got solution for it..
    if so please help me..
    my mail id is [email protected]
    i want help in designing the download manager
    can any one help me out plzzzzzzzzzzzzzz
    bye

  • Is there a batch process for opening multiple raw images and applying the same, stored preset?

    I often have multiple exposures of the same subject, which I would like to treat identically. At present I have to open each one individually in Camera Raw, apply the preset, save, go on to the next, etc.
    Looking for a way, if there is one, to select them all, in order to apply the preset to all at once. Or perhaps there may be a scripting method to allow this?

    Which version of photoshop, camera raw and operating system are you using?
    You should be able to open all the images inside camera raw, Select All  (upper left of the camera raw dialog above the filmstrip of open images) and then apply the settings to all the selected images.

  • I want to stop iMessage opening when i login

    Hello people,
    would love to know how i stop iMessage and mail opening when i login. 
    Thanks in advance
    Stevie

    Make sure it iMessage is shut down before you reboot and look in Users & Groups, Login Items and remove it from there. Reboot and see if it opens.

  • My Animation stops for 1-2 frames when sound is used.

    Hello, I'm making an animation on Macromedia Flash Professional 8.
    I have 3 layers, Sound, BackGround, and Main.
    When I play the animation, and it reaches the sound that is supposed to play, the animation
    first freezes, then the sound plays and it happens again when it reaches the next sound, tho nothing gets out of sync.
    Is there a way for me to send you guys the animation so you can find the problem?

    You may want to ask in the Flash Pro forum.
    This is likely caused by something in your Actionscript.

  • How do I stop Firefox opening multiple tabs?

    I upgraded to version 4 of Firefox. After shutting down the other night, every time I open FF it opens 5 tabs for 5 differient websites - all in my favourites. I haved not asked for this and cannot find a way of turning it off. I tried uninstalling and reinstalling FF and the tabs still appear. A little help would be appreciated.

    Check to see if they have been set as home pages, if they have you can change the home page as shown here - https://support.mozilla.com/kb/How+to+set+the+home+page3

  • On page 49,IOS5 it shows an icon for opening multiple pages. I can 't find it.

    How do I find it?

    Safari on iOS 5 uses tabbed browsing, not thumbnail/page browsing as on previous iOS versions. Tap the '+' on the right-hand end of the tab bar to open a new tab - you can then use the 'x' on the left-end of each tab to close them.
    I assume that you are looking at an old version of the manual and not the iOS 5 version - you can download a copy of the iOS 5 version from here http://support.apple.com/manuals/ipad

  • What options i should choose for Render Multiple frames Simultaneously?

    Installed RAM: 7,98 GB
    Current RAM Usage: 1,19 GB
    Allowed RAM Usage: 5,98 GB
    Process ID
    Application Name
    Min Needed Memory
    Max Usable Memory
    Max Allowed Memory
    Current Memory
    Current Priority
    6696
    After Effects
    0,40
    7,98
    5,98
    1,19
    2 - Normal
    Program:
    After Effects cs6
    Pc:
    Intel core i3
    RAM: 8GB
    Graphic card: GT440

    AE5+ likes cores & RAM.
    use 6GB as min reserved for OS.
    If footage is greater than 480p (SD television) use 1.5-3GB/thread.
    Not sure which processor you have, if you have a clarkdale processor i3-5xx you are kind of hosed about your only option is to update to 16gb is about the best you can do, if you have sandy/ivy-bridge i3-2xxx/3xxxx update it to i5-i7 and 16+GB of RAM, you'll have a lot more fun with it

  • How can I open multiple files as Photoshop Raw files at the same time for Photoshop CS6 extended on a PC?

    I am trying to open 20-25 files at the same time as Photoshop Raw [*.RAW] files.
    The only way I can open multiple files is if i leave the file type as All Formats. When I change it to  Photoshop Raw [*.RAW], the files a deselected.

    Use bridge. Select all the files then press ctrl-r or cmd-r to load the selected files into camera raw.
    If you try this in Photoshop use File>Open As then for file type choose camera raw. (I have not tested open as for opening multiple files)

  • How to open multiple Sessions in Solution Manager

    Good Day Gurus,
    I am currently working on Solman 7.1 Sp12.My question is :Is it possible to open multiple sessions in Solution Manager? Here is the scenario: The client is working on multiple incidents and instead of logging on to the system again to access the 2nd incident he would like to open another session within the current call he is working on.
    Is this functionality possible in Solman? I have seen the functionality working before  in CRM interaction center not sure if it applies in Solman.
    Your help is highly appreciated.
    Thanks
    Maria

    Hi Maria,
    Options to Call a Function in an SAP System, by entering transaction codes in the command field, the transaction in bold is the one your want for opening multiple sessions.
    You can use the F1 key on the command field to display the following possible entries:
    /N to cancel the current transaction
    /NXXXX to call transaction XXXX directly from another transaction. Without the prefix, you can only call XXXX from the SAP Easy Access screen.
    /O to display the overview of the SAP GUI sessions on your computer
    /OXXXX to call transaction XXXX in a new window directly from another transaction
    /NEND to end the log on session with a confirmation dialog box
    /NEX to end the log on session without a confirmation dialog box
    /I to delete the window you are currently using
    Regards,
    Ruth

  • Table name for opening and closing stock

    Hi gurus,
    i want table name for opening and closing stock .  How to calculate this opening and closing stock in report.
    Murali.

    Murali,
    Check out in OINM, which maintains all the details of the stock transactions..
    Hope it might help you..
    Regards
    Gattu

  • How to open multiple C source files in one window in Xcode

    I could not find the way for opening multiple source code in one window in Xcode.
    Is it possible?

    Yes that was my question, thank you very much...
    you mean like in tabs or somethign? I don't quite
    understand your question. If everything is in one
    project, you can switch your file viewer to editor
    mode by clicking on Editor in the top left and then
    navigate through your files with the left tree.

Maybe you are looking for