View Single Post
  #8 (permalink)  
Old 05-10-2008, 04:56 AM
terox13 terox13 is offline
Member
 
Join Date: May 2008
Posts: 6
terox13 is on a distinguished road
Ohh thanks. I figured out what i did wrong.
Code:
text.setBounds(20,20,100,100);
I was setting the bounds of the JTextArea instead of the JScrollPanel, like this:
Code:
scroll.setBounds(20,20,100,100);
Thanks for your help!
Reply With Quote