in reply to Re: One More bit of Perl/Tk Confusion
in thread One More bit of Perl/Tk Confusion
$mpy_mpe[$b]is item $b in the array @mpy_mpe. In this case $mpy_mpe[0] = my $mpy_1 = $mw->Entry( -width => 5, -textvariable => \$mpy1 )->pack();\n$mpy_1 -> grid(-row=>3,-column=>1, -in => $table);\nmy $mpe_1 = $mw->Entry( -width => 5, -textvariable => \$mpe1 )->pack();\n$mpe_1 -> grid(-row=>3,-column=>2, -in => $table);\n
Now, I can generate all 250+ rows that I need, but I only want to show the first 5, 10 or whatever is in $LST of them.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: One More bit of Perl/Tk Confusion
by Anonymous Monk on Jan 27, 2011 at 21:17 UTC | |
by Dandello (Monk) on Jan 27, 2011 at 22:00 UTC |