Page 2 of 2

PostPosted: Sat Feb 14, 2004 3:07 pm
by jcompagner
patrick: what kind of bean?

Can you send over a solution that demonstrates this behaviour?

Re: HOW TO: JProgressbar bean

PostPosted: Mon Mar 09, 2009 11:55 am
by amcgilly
I have posted a module that uses the JProgressBar bean to display a progress indicator in a non-modal dialog. This approach makes it possible to display and update the progress indicator by placing a single call inside the loop that is driving your lengthy process. This is, in my opinion, an improvement over the example at the start of this thread, which used a modal dialog and therefore required that the main processing loop be placed in the onShow method of the form in dialog.

progress.JPG
progress.JPG (14.26 KiB) Viewed 2598 times


The module and accompanying documentation are available here

Re: HOW TO: JProgressbar bean

PostPosted: Mon Mar 09, 2009 1:41 pm
by maarten
Thanks for sharing Adrian!