ScrollBar added to TextArea
I added a ScrollBar to a TextArea. When I type beyond the horizontal limits, the box is expanding. How can I stop this? I want it to go to the next line and I only want a vertical ScrollBar.
I declared it this way...
JScrollPane scroll =new JScrollPane(messageText, ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);

