I can\'t update my progressbar... this is my code
Thread t=new Thread(new Runnable(){ public void run(){ int i=1; jProgBar.setMin
Putting this snippet
SwingUtilities.invokeLater(new Runnable() { public void run() { jProgBar.repaint(); } }
Between 'i++' and 'Thread.sleep()' should do the job. To get it compiling, mark jProgBar as 'final'.