If I add a new component, the scrollpane does not up update. Can I update it without creating a new JScrollPane?
public void start(){
getBox_Topics().setBorder(new TitledBorder(new EtchedBorder(),"Topics of vote"));
add(new JScrollPane(getBox_Topics(),
JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
JScrollPane.HORIZONTAL_SCROLLBAR_NEVER));
pack();
setHandler(new ClientHandler_Thread(this));
getHandler().start();
setVisible(true);
}
Buttons add the new component in Box: