usernamelabel = new JLabel ("Username: "); add(usernamelabel); username = new JTextField ("Guest", 10); add(username);
users = new TextArea(username.getText(), 15,20, TextArea.SCROLLBARS_VERTICAL_ONLY); users.setEditable(false); add(users);
The TextArea - users Dosent update when i change the Username, can someone help me?
http://prntscr.com/5j7qf <-PICTURE