Hi all,
I've added a JProgressBar in to a JFrame as follows.
progBar = new JProgressBar(0, 100);
progBar.setValue(0);
progBar.setBorderPainted(true);
It's working fine. But I'm stuck on one thing. I cannot change the length of the JProgressBar. It's use a same length even I've change the length(width) of the JFrame. How can I change that.
I've read the doc, but didn't found the way to change it's size. Please help me.