1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| for ($i=0; $i<=28; $i++)
{$frame_mft[$i]=$notebook_install_tmf->Frame( -borderwidth => '1', -relief=>"$GLOB_K_RELIEF")->pack(-side => 'top', -fill => 'x');
for ($j=0; $j<5; $j++)
{$k = $i + (29 * $j);
if ( $k < 10 )
{ $var_tmp = "tmf00$k" ; $check_button_tmf[$i][$j]=$frame_mft[$i]->Checkbutton(-text=>"tmf00$k",-variable=>\$var_tmp,-font => "Arial 10 normal")->pack(-side => 'left',-expand=>'true', -anchor=>'n');
}
if ( $k < 100 && $k >= 10 )
{ $check_button_tmf[$i][$j]=$frame_mft[$i]->Checkbutton(-text=>"tmf00$k",-font => "Arial 10 normal")->pack(-side => 'left',-expand=>'true',-anchor=>'n');
}
if ( $k >= 100 )
{ $check_button_tmf[$i][$j]=$frame_mft[$i]->Checkbutton(-text=>"tmf00$k",-font => "Arial 10 normal")->pack(-side => 'left',-expand=>'true',-anchor=>'n');
}
}
} |
Partager