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);

[414 byte] By [vonehlea] at [2007-11-26 12:22:26]
# 1
messageText.setLineWrap(true);messageText.setWrapStyleWord(true); //optional, but usually is combined with above
Michael_Dunna at 2007-7-7 15:15:43 > top of Java-index,Archived Forums,Socket Programming...
# 2
Thank you very much!
vonehlea at 2007-7-7 15:15:43 > top of Java-index,Archived Forums,Socket Programming...