crabbdean has asked for the wisdom of the Perl Monks concerning the following question:
my $shiftselect; my $shiftsframe = $topframe->Frame->pack; &displayshifts; sub displayshifts { ## Display all shift types and create Radiobuttons for each + my ($ra, $rb); while (($ra, $rb) = each (%db_sh)) { $_ = $topframe->Radiobutton(-text => $db_sh{$ra}->{'ShiftName +'}, -variable => \$shiftselect, -value => $ra ) -> pack; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: TK - Updating Main Window after user input
by zentara (Cardinal) on Jan 07, 2004 at 17:29 UTC | |
|
Re: TK - Updating Main Window after user input
by Anonymous Monk on Jan 07, 2004 at 17:18 UTC | |
by graff (Chancellor) on Jan 08, 2004 at 03:53 UTC | |
by crabbdean (Pilgrim) on Jan 08, 2004 at 12:43 UTC | |
|
Re: TK - Updating Main Window after user input
by crabbdean (Pilgrim) on Jan 07, 2004 at 15:32 UTC | |
by flyingmoose (Priest) on Jan 07, 2004 at 15:57 UTC |