POLALA.COM
welcome to my space
X
Search:  
Welcome to:polala.com
NAVIGATION - HOME
Java Swing Interface Quirk
Published by: cfz 2009-01-07
  • Ok, so I'm writing a program with a GUI for the first time.. but I'm kind of a perfectionist so this is bugging me:

    Frame root = new JFrame();

    JPanel input_screen;
    JPanel wait_screen;
    JPanel result_screen;

    JTextArea input;
    JTextArea solution_box;
    JScrollPane scroll;

    ...

    input_screen = new JPanel();

    // Create the screen where they enter the puzzle
    Box box = Box.createVerticalBox();

    JLabel puzzleText = new JLabel("Puzzle:");
    box.add(puzzleText);

    input = new JTextArea(5, 5);
    box.add(input);

    JButton solve = new JButton("Solve");
    solve.setActionCommand("submit");
    box.add(solve);

    solve.addActionListener(this);

    input_screen.add(box);


    The problem is that when I type in the JTextArea, the JLabel and JButton above and below it move with the text. How can I set them to be in fixed positions? I tried containing the JTextArea in its own JPanel.. but it didn't fix it.


  • Thanks Kirupa, just what I was looking for :)

    BorderLayout ended up working best in this instance :D


  • You need to use a layout manager to handle positioning of all of your controls. My favorite is GridLayout, and you can find out more about it here: http://java.sun.com/docs/books/tutorial/uiswing/layout/grid.html (this link also contains info on other layout managers on the left nav)

    :)


  • You can also specifiy exact positioning just incase you or anyone else is interested.


    setLayout(null);

    objectName.setBounds(left, top, width, height);

    The layout managers are more ideal, but for small GUI applets I sometimes use exact positioning.





  • Where's The Advantage In Windows Genuine Advantage?
    Stocks Bounce After S&P Joins Bear Market
    PRINT Add to favorites
  • why did amanda leave america 039 s next top model if she wasn 039 t eliminated
  • which of the 1960s outer limits episodes freaked you out the most
  • what act do you think is leaving x factor today
  • what business can i start to cure hannover
  • what are some good anime shows i can watch as someone who never has watched them before
  • couples on contiki tours
  • i want to start some some business from borivali please give me some idea
  • does banjarmasin have a beach with sand
  • fraud sri sai promoters bangalore bsnl broad band connection
  • does anyone know the artist of the day deans dairy code taylor swift and nascar rewards code for oct 10 2008
  • laws on jobs in ontario
  • did you think danni minogue was given more airtime tonight on xfactor
  • killer on true blood
  • new song thats always on radio

  • my neighbourer is doing illegal constuction
  • best price for bajaj platina in bangalore
  • tv shows with 2 parents
  • where can i buy an electric fire place in delhi gurgaon
  • ground floor lia sophia jewelry in canada
  • where can i sell old coins
  • is there any school band in u vic
  • does anyone else think that austin from the x factor
  • why do networks have good shows on thursday with nothing decent on saturday and friday
  • which base is considered ual relations
  • wierd question about bratz lol
  • where can you find babes for one night stands in bangalore
  • i 039 m 14 and i need a job in ontario
  • #If you have any other info about this subject , Please add it free.#
    Your name:
    E-mail:
    Telphone:

    Your comments:


    If you have any other info about Java Swing Interface Quirk , Please add it free.
    About us |Contact us |Advertisement |Site map |Exchange links
    Copyright© 2008polala.com All Rights Reserved