~~David~~ has asked for the wisdom of the Perl Monks concerning the following question:
Can anyone help? Thanks, Davidforeach (sort keys(%density)) { my $keytext = $mb->Label ( -height => 1, -width => 10, -text => "$_", -justify => 'left' ); $keytext -> grid( -column => "0", ); } foreach (sort keys(%density)) { my $denbox = $mb->Entry( -textvariable => \$density{$_}, -width => 5 ); $denbox -> grid( -column => "1" );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: What is the best way to arrange widgets using TK?
by mawe (Hermit) on Aug 24, 2004 at 04:55 UTC | |
|
Re: What is the best way to arrange widgets using TK?
by qumsieh (Scribe) on Aug 24, 2004 at 05:56 UTC | |
by eserte (Deacon) on Aug 24, 2004 at 08:08 UTC | |
|
Re: What is the best way to arrange widgets using TK?
by Elijah (Hermit) on Aug 24, 2004 at 04:08 UTC | |
by ~~David~~ (Hermit) on Aug 26, 2004 at 03:05 UTC | |
|
Re: What is the best way to arrange widgets using TK?
by rinceWind (Monsignor) on Aug 24, 2004 at 06:35 UTC | |
|
Re: What is the best way to arrange widgets using TK?
by eserte (Deacon) on Aug 24, 2004 at 08:13 UTC | |
by rinceWind (Monsignor) on Aug 24, 2004 at 20:35 UTC | |
|
Re: What is the best way to arrange widgets using TK?
by Scarborough (Hermit) on Aug 24, 2004 at 15:35 UTC |