donato has asked for the wisdom of the Perl Monks concerning the following question:
the GUI has this label:$err = $SiTef->ExecutaLoopAutorizacao( $SiTef, $params, $data ); while ( $err eq '10000' ) { #print Dumper( $params, $data ); #print "\nRETORNO: $err\n"; if ( $params->{UserMessage} ) { $Status = $params->{Message}; } $err = $SiTef->ExecutaLoopAutorizacao( $SiTef, $params, $data ); }
Is there something Im not getting about Tk programming, is there an easy way to fix this or should I go somewhere else?my $Status; my $lblStatus = $mw->Label(-textvariable=>\$Status)->pack();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Tk behaviour
by jdtoronto (Prior) on Feb 14, 2007 at 16:48 UTC | |
by donato (Novice) on Feb 14, 2007 at 17:01 UTC |