$lb_products = $mw_full->Scrolled("Listbox", -scrollbars => "e",                                               -selectmode => "multiple",                                               -width => 0)->pack(-side => 'top',                                                                  -in => $label_h4_1_v1); $lb_products->insert('end', @products);  $lb_products->bind('',                     sub { @lb_product = ();                           @lb_product = $lb_products->curselection();                           chomp @lb_product; } ); $lb_costcenters = $mw_full->Scrolled("Listbox", -scrollbars => "e",                                             -selectmode => "multiple",                                             -width => 20)->pack(-side => 'top',                                                                 -in => $label_h4_1_v2);                                                                              $lb_costcenters->insert('end', @costcenters);  $lb_costcenters->bind('',                        sub { @lb_costcenter = ();                              @lb_costcenter = $lb_costcenters->curselection();                              chomp @lb_costcenter; } );