hello guys i want to make progress bar in netbeans i trying with this code but the progres bar doesnt work property just showing 100% when finish and doesnt have animation of doing that progress:
public final class Music extends javax.swing.JFrame {
public static class Start implements Runnable {
@Override
public void run() {
}
}
}
private void afrojackActionPerformed(java.awt.event.ActionEvent evt) {
new Thread(new Start()).start();
for (int x = 0; x < 100; x++) {
ProgressBar.setValue(x);
ProgressBar.repaint();
try {
Thread.sleep(50);
} catch (Exception ex) {
}
}
}
anyone tell me what is the problem and please done give me the link of http://docs.oracle.com i have seened that many times but cant figure out ... :/
Problem Solved but its stucking till the song starts ...