| Author |
Progress Monitor
|
Barclay Berger
Greenhorn
Joined: Jun 07, 2006
Posts: 6
|
|
I'm new to java and not real sure on how to hook up a progress monitor to an event. I'm trying to update the progress monitor as the a function runs but all I get is a blank progress monitor and never updates. I don't quite understand actionlistners etc.. so I'm sure that is what I'm missing but here is what I'm trying to do. public void jButton1_actionPerformed(ActionEvent e) { runupdate(); } private void runupdate() { ProgressMonitor prog = new ProgressMonitor(SwingLabel.this, "Uploading Images, Please Wait...", "", 0, 100); prog.setNote("Uploading Images, Please Wait"); prog.setProgress(0); prog.setNote("Uploading Image 1"); prog.setProgress(50); prog.close(); }
|
 |
Joe Ess
Bartender
Joined: Oct 29, 2001
Posts: 8263
|
|
|
Have a look at this entry in our FAQ: JProgressBar Doesnt Update
|
"blabbing like a narcissistic fool with a superiority complex" ~ N.A.
[How To Ask Questions On JavaRanch]
|
 |
 |
|
|
subject: Progress Monitor
|
|
|