my Jtext area does not scroll when overflowing, any ideas?
Jesus lives
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32611
4
posted
0
You haven't put any scrolling components onto your app. Have a look at JScrollPane in the API.
Michael Dunn
Ranch Hand
Joined: Jun 09, 2003
Posts: 4632
posted
0
give the preferredSize to the scrollpane, not the textArea
replace jTextArea = new JTextArea(); Dimension d = new Dimension(100,100); jTextArea.setPreferredSize(d); contentPane.add(new JScrollPane(jTextArea),BorderLayout.SOUTH);
with this jTextArea = new JTextArea(); JScrollPane sp = new JScrollPane(jTextArea); Dimension d = new Dimension(100,100); sp.setPreferredSize(d); contentPane.add(sp,BorderLayout.SOUTH);