PerlingTheUK has asked for the wisdom of the Perl Monks concerning the following question:
$obj->{ lb_class } = $f_class->Listbox( -selectmode => 'multiple', -width => 30, -height => 12, -listvariable => $obj->{class} )->grid( -row => 0,-column => 0 ); my $f_type = $obj->{ "dlg" }->Frame( -relief => 'groove', -borderwidth => 2 )->grid( -row => 1, -column => 1 ); $obj->{ type } = [( ...)]; $obj->{ lb_type } = $f_type->Listbox( -selectmode => 'multiple', -width => 30, -height => 12, -listvariable => $obj->{type} )->grid( -row => 0, -column => 0 );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Two TK Listboxes problem
by eserte (Deacon) on Aug 11, 2004 at 14:07 UTC | |
by PerlingTheUK (Hermit) on Aug 11, 2004 at 14:20 UTC | |
by PodMaster (Abbot) on Aug 11, 2004 at 14:30 UTC | |
by PerlingTheUK (Hermit) on Aug 11, 2004 at 18:31 UTC |