in reply to Just another TK ProgressBar question!
... my $count = 0; my $total = @data; for (@data) { print STDOUT "$_\n"; $percent_done = $count * 100 / $total; $count++; $mw->update; } MainLoop();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Just another TK ProgressBar question!
by Anonymous Monk on Sep 17, 2004 at 16:14 UTC |