| Author |
Scroll pane problem
|
Peter Phung
Ranch Hand
Joined: Dec 06, 2001
Posts: 138
|
|
How do i make a scroll pane a specified size? i've created a JTextArea and have placed it in a scrollpane. However, when the textarea and scrollpane is displayed it appears smaller than i want it? Here's the code i have : I'd appreciate any help that anyone can offer.
|
Pete<br />"Reality is an illusion <br />brought on by a lack of <br />drink, drugs and smut"
|
 |
Rajendar Goud
Ranch Hand
Joined: Mar 06, 2002
Posts: 220
|
|
Hi, Try this.. textArea = new JTextArea(5, 30); JScrollPane scrollPane = new JScrollPane(textArea); contentPane.setPreferredSize(new Dimension(400, 100)); contentPane.add(scrollPane, BorderLayout.CENTER); Raj
|
 |
 |
|
|
subject: Scroll pane problem
|
|
|