I can\'t update my progressbar... this is my code
Thread t=new Thread(new Runnable(){ public void run(){ int i=1; jProgBar.setMin
Before the sleep, add a call to SwingUtilties.invokeLater() that spawns a thread to fire a firePropertyChange on the progressbar in the EDT.