View Single Post
  #2 (permalink)  
Old 02-17-2008, 01:01 AM
hardwired hardwired is offline
Senior Member
 
Join Date: Jul 2007
Posts: 1,189
hardwired is on a distinguished road
Code:
center.add(newbutton); // After adding/removing/changing a component you must // tell its parent container to do a new layout. We do // this with the JComponent method revalidate or // with the older Container method validate. center.revalidate(); // center.repaint();
Reply With Quote