foreach $i (0..25) { $name[$i] = $top->Listbox(-height=> 1, -width=> 30)->pack(-side=>'left'); $scroll_name[$i] = $top->Scrollbar(-command => [ 'yview', $name[$i]])->pack(-side=>'left'); $name[$i]->configure(-yscrollcommand => [ 'set', $scroll_name[$i]])->pack(-side=>'left'); $nummer[$i]  = $top->Listbox(-height=> 1, -width=> 3)->pack(-side=>'left'); $scroll_nummer[$i] = $top->Scrollbar(-command => [ 'yview', $nummer[$i]])->pack(-side=>'left'); $nummer[$i]->configure(-yscrollcommand => [ 'set', $scroll_nummer[$i]])->pack(-side=>'left'); $format[$i]  = $top->Entry(-width=> 20)->pack(-side=>'left'); $istwert[$i] = $top->Label(-text => 'Labeltext', -relief => 'ridge', -borderwidth => '5', -width=> 30)->pack(-side=>'left'); $name[$i] -> insert('end',@test); $nummer[$i] -> insert(0,1,2,3,4,5); }