Possible Duplicate:
Java Textarea ScrollPane
I have code for a scrollbar to appear in a textarea but it doesnt really work. Any suggestions?
final JTextArea textArea = new JTextArea();
textArea.setEditable(false);
textArea.setBounds(10, 152, 456, 255);
textArea.setBorder(border);
textArea.setLineWrap(true);
sbrText = new JScrollPane(textArea);
sbrText.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
panel_1.add(textArea);