Scroll bar problem !

// I have the following code :

..............................

boxCon =Box.createHorizontalBox();

ta1 = new JTextArea("I am hammer,\nShe is Kelly!",10,15) ;

ta1.setLineWrap(true );

JScrollPane scroll = new JScrollPane (ta1);

scroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);

boxCon.add(ta1);

boxCon.add(scroll);

con= this.getContentPane();

con.setLayout(new FlowLayout());

con.add(boxCon);

........................

I want to get the scroll bar apears attatch to the JTextArea obj ta , But I can see none scroll bar !

why ?

[649 byte] By [viaphone] at [2007-9-30 14:57:15]
# 1
boxCon.add(ta1); //remove this line
DrLaszloJamf at 2007-7-5 21:07:57 > top of Java-index,Archived Forums,Java Programming...
# 2
thanks ! I make it !
viaphone at 2007-7-5 21:07:57 > top of Java-index,Archived Forums,Java Programming...