Aboveyou has asked for the wisdom of the Perl Monks concerning the following question:
sub copy_entry { $i = 0; my %hash; $search = $entrysearch->get(); $f1 = $mwf->Frame()->pack(-expand => 0,-fill => 'both' ); foreach $fr($f1) { my $i =0; foreach (1..5) { $hash{'text'} = $fr->Button( -relief => 'groove', -background => 'white', -foreground => 'black', -font => "Ariel 8 bold", -text => $row[$i], -height => 1, -width => 1 )->pack(-side=>'left',-expand => 1, + -fill => 'both' ); $i++; } } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl/TK get the Button's text
by lamprecht (Friar) on Jun 03, 2009 at 13:12 UTC | |
by Anonymous Monk on Jun 03, 2009 at 16:47 UTC | |
by lamprecht (Friar) on Jun 03, 2009 at 20:17 UTC | |
|
Re: Perl/TK get the Button's text
by liverpole (Monsignor) on Jun 03, 2009 at 18:17 UTC | |
|
Re: Perl/TK get the Button's text
by Anonymous Monk on Jun 03, 2009 at 09:20 UTC | |
|
Re: Perl/TK get the Button's text
by Anonymous Monk on Jun 03, 2009 at 08:49 UTC | |
by Aboveyou (Acolyte) on Jun 03, 2009 at 08:59 UTC | |
|
Re: Perl/TK get the Button's text
by hangon (Deacon) on Jun 03, 2009 at 17:11 UTC |