Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #17382

Layout Doesn't Work (was: jLabel setVisible(true) Doesn't Work)

Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.glorb.com!indigo.octanews.net!news-out.octanews.net!mauve.octanews.net!newspump.sol.net!news-out.readnews.com!transit3.readnews.com!news-out.news.tds.net!newsreading01.news.tds.net!53ab2750!not-for-mail
From "Jeff Higgins" <jeff.higgins@1:261/38.remove-qhs-this>
Subject Layout Doesn't Work (was: jLabel setVisible(true) Doesn't Work)
Message-ID <5022AB7E.56332.calajapr@time.synchro.net> (permalink)
X-Comment-To Jeff Higgins
Newsgroups comp.lang.java.programmer
In-Reply-To <5022AB7D.56329.calajapr@time.synchro.net>
References <5022AB7D.56329.calajapr@time.synchro.net>
X-FTN-AREA COMP.LANG.JAVA.PROGRAMMER
X-FTN-MSGID 1:261/38 67d21cc3
X-FTN-REPLY 1:261/38 6c4c1a81
Content-Type text/plain; charset=IBM437
Content-Transfer-Encoding 8bit
X-Gateway time.synchro.net [Synchronet 3.16a-Win32 NewsLink 1.98]
Lines 74
Date Wed, 08 Aug 2012 19:04:17 GMT
NNTP-Posting-Host 69.21.70.65
X-Complaints-To news@tds.net
X-Trace newsreading01.news.tds.net 1344452657 69.21.70.65 (Wed, 08 Aug 2012 14:04:17 CDT)
NNTP-Posting-Date Wed, 08 Aug 2012 14:04:17 CDT
Organization tds.net
Xref csiph.com comp.lang.java.programmer:17382

Show key headers only | View raw


  To: Jeff Higgins
From: Jeff Higgins <jeff@invalid.invalid>

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener; import java.awt.event.KeyEvent;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

@SuppressWarnings("serial")
public class Scratch extends JPanel implements ActionListener {

   private JButton vButton, iButton;
   private JLabel label;

   public Scratch() {

     vButton = new JButton("Visible");
     vButton.setMnemonic(KeyEvent.VK_D);
     vButton.setToolTipText("Sets Label visible (true)");
     vButton.setActionCommand("visible");
     vButton.addActionListener(this);
     vButton.setEnabled(false);

     iButton = new JButton("Invisible");
     iButton.setMnemonic(KeyEvent.VK_E);
     iButton.setToolTipText("Sets Label visible (false)");
     iButton.setActionCommand("invisible");
     iButton.addActionListener(this);

     label = new JLabel("Scratch");

     add(vButton);
     add(label);
     add(iButton);
   }

   public void actionPerformed(ActionEvent e) {
     if ("invisible".equals(e.getActionCommand())) {
       label.setVisible(false);
       vButton.setEnabled(true);
       iButton.setEnabled(false);
     } else {
       label.setVisible(true);
       vButton.setEnabled(false);
       iButton.setEnabled(true);
     }
   }

   private static void createAndShowGUI() {

     JFrame frame = new JFrame("Scratch");
     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
     Scratch scratch = new Scratch();
     frame.setContentPane(scratch);
     frame.pack();
     frame.setVisible(true);
   }

   public static void main(String[] args) {
     javax.swing.SwingUtilities.invokeLater(new Runnable() {
       public void run() {
         createAndShowGUI();
       }
     });
   }
}

--- BBBS/Li6 v4.10 Dada-1
 * Origin: Prism bbs (1:261/38)
--- Synchronet 3.16a-Win32 NewsLink 1.98
Time Warp of the Future BBS - telnet://time.synchro.net:24

Back to comp.lang.java.programmer | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

jLabel setVisible(true) Doesn't Work "clusardi2k" <clusardi2k@1:261/38.remove-qhs-this> - 2012-08-08 19:04 +0000
  Re: jLabel setVisible(true) Doesn't Work "markspace" <markspace@1:261/38.remove-qhs-this> - 2012-08-08 19:04 +0000
    Re: jLabel setVisible(true) Doesn't Work "clusardi2k" <clusardi2k@1:261/38.remove-qhs-this> - 2012-08-08 19:04 +0000
      Re: jLabel setVisible(true) Doesn't Work "Jeff Higgins" <jeff.higgins@1:261/38.remove-qhs-this> - 2012-08-08 19:04 +0000
        Layout Doesn't Work (was: jLabel setVisible(true) Doesn't Work) "Jeff Higgins" <jeff.higgins@1:261/38.remove-qhs-this> - 2012-08-08 19:04 +0000
          Re: Layout Doesn't Work (was: jLabel setVisible(true) Doesn't Work) "clusardi2k" <clusardi2k@1:261/38.remove-qhs-this> - 2012-08-08 19:04 +0000
            Re: Layout Doesn't Work "markspace" <markspace@1:261/38.remove-qhs-this> - 2012-08-08 19:04 +0000
              Re: Layout Doesn't Work "clusardi2k" <clusardi2k@1:261/38.remove-qhs-this> - 2012-08-08 19:04 +0000
                Re: Layout Doesn't Work "clusardi2k" <clusardi2k@1:261/38.remove-qhs-this> - 2012-08-08 19:04 +0000
                Re: Layout Doesn't Work "markspace" <markspace@1:261/38.remove-qhs-this> - 2012-08-08 19:04 +0000
                Re: Layout Doesn't Work "Jeff Higgins" <jeff.higgins@1:261/38.remove-r72-this> - 2012-08-08 20:06 +0000
                Re: Layout Doesn't Work "clusardi2k" <clusardi2k@1:261/38.remove-r72-this> - 2012-08-08 20:06 +0000
                Re: Layout Doesn't Work "markspace" <markspace@1:261/38.remove-k2r-this> - 2012-08-09 18:44 +0000
                Re: Layout Doesn't Work "Jeff Higgins" <jeff.higgins@1:261/38.remove-t9h-this> - 2012-08-10 18:39 +0000
                Re: Layout Doesn't Work "Jeff Higgins" <jeff.higgins@1:261/38.remove-t9h-this> - 2012-08-10 18:39 +0000
                Re: Layout Doesn't Work "Jeff Higgins" <jeff.higgins@1:261/38.remove-6gh-this> - 2012-08-10 19:41 +0000
            Re: Layout Doesn't Work "Jeff Higgins" <jeff.higgins@1:261/38.remove-qhs-this> - 2012-08-08 19:04 +0000
              Re: Layout Doesn't Work "Jeff Higgins" <jeff.higgins@1:261/38.remove-r72-this> - 2012-08-08 20:06 +0000
  Re: jLabel setVisible(true) Doesn't Work "John B. Matthews" <john.b..matthews@1:261/38.remove-qhs-this> - 2012-08-08 19:04 +0000
  Re: jLabel setVisible(true) Doesn't Work "Roedy Green" <roedy.green@1:261/38.remove-k2r-this> - 2012-08-09 18:44 +0000

csiph-web