Tagged Questions
0
votes
2answers
61 views
How to see communicate between 2 runnable with progression
I have 2 classes .java
The main :
public class Controller extends javax.swing.JFrame
{
public static void updateProgressBar(int i) {
jProgressBar1.setValue(i);
...
2
votes
3answers
2k views
My JProgressBar is not Updating Until it is 100%
Ok, I have the following code.
public class MyProgressBar extends JPanel implements MyData, Serializable {
/**
*
*/
public static final int MAX = 10000;
public ...
2
votes
6answers
2k views
Update JProgressBar
I can't update my progressbar... this is my code
Thread t=new Thread(new Runnable(){
public void run(){
int i=1;
jProgBar.setMinimum(0);
...