View Single Post
  #1 (permalink)  
Old 12-08-2007, 02:04 PM
Soda Soda is offline
Member
 
Join Date: Dec 2007
Posts: 15
Soda is on a distinguished road
Is there somethign wrong with this code?
Quote:
JFrame frame = new JFrame(500,500);

JPanel panel = new JPanel();
pane.setLayout(null);

JTextArea textarea = new JTextArea();

JScrollPane scrollpane = new JScrollPane();
scrollpane.setViewportView(textarea);

frame.add(panel);
panel.add(scrollpane);

scrollpane.setBounds(200,200,30,100);
My goal is to add a scrollpane to the textarea but it wont appear....any tips?
Reply With Quote
Sponsored Links