views:

37

answers:

4

Hi!

Can anyone could give an idea about how I can make a ProgressPanel in a Java Application?...

The idea is basically to call a Frame with a progress bar and wait until the operation is done. However, I got some few problems, I suppose that a Thread must be used.

Any suggestion?

Thx

+1  A: 

Did you go through this tutorial?

http://download.oracle.com/docs/cd/E17409_01/javase/tutorial/uiswing/components/progress.html

Bakkal
A: 

See the sun tutorial here

Paul Whelan
A: 

See How To Use Progress Bars in the Swing tutorial.

Mark
A: 

You may also find the documentation for SwingWorker useful. You will probably find it very useful when making progress bars, I do at least!

Phill Sacre