wook has asked for the wisdom of the Perl Monks concerning the following question:
sub aaa { $count = 1; while($count <= $entry_amount->get) { $label_g = $count_g; $button_b = $count_b; $_ = $mw->Frame()->pack(-side=>top); $_->Label(-text=>"Variable")->pack(-side=>left, -padx=>5, -pad +y=>5); $_->Entry(-width=>30)->pack(-side=>left, -padx=>5, -pady=>5); $mw->update; $count++; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl/Tk and anonymous widgets
by Roy Johnson (Monsignor) on Oct 10, 2005 at 19:56 UTC | |
|
Re: Perl/Tk and anonymous widgets
by chester (Hermit) on Oct 10, 2005 at 19:50 UTC | |
|
Re: Perl/Tk and anonymous widgets
by rcseege (Pilgrim) on Oct 11, 2005 at 02:33 UTC | |
|
Re: Perl/Tk and anonymous widgets
by zentara (Cardinal) on Oct 11, 2005 at 10:53 UTC |