|
Hi All,
Please help me!
Why doesn't the counter label count in real time in my Tcl/tk Perl
script, though I configure the '$counter' label at all changes
of the "$i" variable.
Thanks: R.
Beci
#!/usr/bin/perl -w
use strict;
use Tk; $|=1; # Create main window
my $main = MainWindow->new; # Add a Label and a Button to main
window
$main->Button( -text => 'Start', -command => sub {progress()} )->pack; my
$counter=$main->Label(
-text=>"0" )->pack(); # Spin the message loop
MainLoop; sub progress {
for my $i (0..15) { sleep(1); $counter->configure(-text=>$i); } } |
- dbd::oracle broken, was Re: (no subject) Chris Devers
- Re: (no subject) Jenda Krynicky
- (no subject) Roboz Béla
- (no subject) Eric Sun
- Re: (no subject) Mark Bergeron
- (no subject) tsgint
- (no subject) Kristofer Wolff
- (no subject) Zol Bes
- (no subject) karthikeyan
- RE: (no subject) Thomas_M
- (no subject) roboz
- (no subject) Greg Sidelinger
- (no subject) karthikeyan
- (no subject) Adam Frielink
- (no subject) $HeadHunter_Sid
- Re: (no subject) $Bill Luebkert
- Re: (no subject) Zac Morris \(personal\)
- Re: (no subject) Martin Moss
- (no subject) K Andrew
- (no subject) vinod
- (no subject) Eko Budiharto
