2
votes
4answers
1k views

JProgressbar: how to change colour based on progress?

Is it possible to be able to change the bar colour depending on the value of the progress? I tried the following but it doesn't work: percentUsed = (int)(((float) used / (float) max) * ...
2
votes
2answers
3k views

How to change JProgressBar color?

I Used .setBackground and .setForeground and they didn't work, the color is like Orange, can't change it.
-1
votes
1answer
251 views

How to use NetBeans's JProgressBar?

I am using Netbeans gui, the fast easy drag and drop, lets say a created a JButton, named it "Start", I added an event (ActionPerformed) for this JButton, so I get the following method private void ...
2
votes
2answers
409 views

jTextfield and progressbar not working

I have a main class(which is basically a netbeans form;drag and drop) from where my application starts and another class(call it class 2) where my functions resides.I first call a function in class2 ...
0
votes
1answer
279 views

set the value of jprogressbar to zero after reached 100%

how to set the value of jprogressbar to zero after reached the 100%? i used the following code but didn't do exactly what i want: private void jButton6ActionPerformed(java.awt.event.ActionEvent evt) ...