Results 1 to 4 of 4
- 12-13-2010, 05:39 PM #1
Senior Member
- Join Date
- Dec 2010
- Location
- Indiana
- Posts
- 202
- Rep Power
- 3
GUI appears grey until resize randomly. Why?
I have about 2 questions.
1) If I add certain text lengths to JTextField() the GUI appears gray until I resize it. "Hi" verses "Hello Java" makes all the difference. Only does this sometimes?!?
Java Code:JTextField pageAddress = new JTextField("Hello Java", 20);
It also makes a difference messing with the boolean value of JCheckBox() making it true vs leaving it out changes the issue above.
Java Code:JCheckBox jumboSize = new JCheckBox("Jumbo Size");
2) JLabel.LEFT CENTER or RIGHT doesnt seem to do anything. Why is this?
Here is all my code for my test program. Perhaps I am missing something?
Java Code:import javax.swing.*; import java.awt.*; public class Playback extends JFrame { public Playback() { setTitle("Note Trainer"); setSize(370,360); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setVisible(true); FlowLayout flo = new FlowLayout(); setLayout(flo); JLabel pageLabel = new JLabel("Web page address: ", JLabel.LEFT); JTextField pageAddress = new JTextField("He", 20); add(pageLabel); add(pageAddress); JButton A = new JButton("A"); JButton B = new JButton("B"); JButton C = new JButton("C"); JButton D = new JButton("D"); JButton E = new JButton("E"); JButton F = new JButton("F"); JButton G = new JButton("G"); add(A); add(B); add(C); add(D); add(E); add(F); add(G); JCheckBox jumboSize = new JCheckBox("Jumbo Size"); add(jumboSize); } public static void main(String[] args) { Playback pb = new Playback(); } }Last edited by AcousticBruce; 12-13-2010 at 05:41 PM.
-
Call setVisible(true) after adding all your components.
- 12-13-2010, 05:53 PM #3
Senior Member
- Join Date
- Dec 2010
- Location
- Indiana
- Posts
- 202
- Rep Power
- 3
Ahh... I thought that was needed once within { }.
Thank you.
-
Similar Threads
-
Math tutor, no errors, nothing appears when run!
By Reiyn in forum New To JavaReplies: 6Last Post: 11-11-2010, 10:28 AM -
inputs numbers then outputs how many time a particular number appears
By koji_kun in forum New To JavaReplies: 23Last Post: 12-22-2009, 08:33 PM -
Eclipse appears half a second and disappears Vista IE8
By ortollj in forum EclipseReplies: 11Last Post: 10-27-2009, 07:55 AM -
Grey Box
By mja229 in forum New To JavaReplies: 2Last Post: 12-24-2008, 07:24 PM -
How to make the menu bar objects appears from right to left
By JavaBean in forum AWT / SwingReplies: 3Last Post: 07-19-2007, 11:12 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks