In this case it's probably much easier to convert to grid, rather than, pack, since you're already in effect faking your own grid layout.
for (@data) {
$chkReport[$i] = $frame
->Checkbutton()
->grid( -column => 0, -row => $i ); #==
$lblReport[$i] = $frame
->Label( -text => $_ )
->grid( -column => 1, -row => $i ); #==
$i++;
}
|
A word spoken in Mind will reach its own level, in the objective world, by its own weight
|
|