jtextarea scroll

I want to get a scroll bar in jtextarea when required without using scroll pane
[93 byte] By [naveentr] at [2007-9-26 1:17:07]
# 1
You can use JTextArea.add(Vertical.ScrollBar_AS_NEEDED);I'm not positive about the accuracy of that method but thats the rough idea
carrolf2 at 2007-6-29 0:46:03 > top of Java-index,Archived Forums,Swing...
# 2
Why not use JScrollPane? It is really simple:new JScrollPane(theTextArea, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
DanielN at 2007-6-29 0:46:03 > top of Java-index,Archived Forums,Swing...