Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
This works fine, and I see the GUI with all the entries ,however, when I enter somthing in one of the entries , it appears on all other entries . I can't fix that, is there a solution to that issue.my $left4 = $top->Frame(-background=>'gray', )->pack(-side=>'left',-pady=>2,-padx=>15); my $tax= $left4->Label(-text=>'Time In', -background=>'gray')->pack(); my $userINputNumber; my $x = 1; while($x <= $userINputNumber) { my $timIn = $left4->Entry(-width=>12, -background =>'white', -borderwidth=>2,-relief=>'sunken', -textvariable => \$info{LOCname})->pack(); $timIn->insert('end',""); $x++; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: PL/Tk question
by dreadpiratepeter (Priest) on May 01, 2004 at 22:29 UTC | |
|
Re: PL/Tk question
by Popcorn Dave (Abbot) on May 01, 2004 at 22:43 UTC | |
|
Re: PL/Tk question
by Anonymous Monk on May 02, 2004 at 00:25 UTC |