in reply to Re^4: Perl - TK - Listbox insertion problem
in thread Perl - TK - Listbox insertion problem

Citing the documentation (emphasis mine):
$listbox->insert(index, ?element, element, ...?)

Inserts zero or more new elements in the list just before the element given by index. If index is specified as end then the new elements are added to the end of the list. Returns an empty string.

You cannot use or die for functions returning always the empty string. See also the definition of $! in perlvar.