Help for this page

Select Code to Download


  1. or download this
     
    my @list =    ( "a", "b", "c", "d", "e", "f" );
    
  2. or download this
    my @list =    ( "a", "b", "c", "d", "e", "f","g" );
    or perhaps    ( "a", "b", "NEW", "c", "d", "e", "f" )
    or perhaps    ( "a", "b", "c")
    
  3. or download this
    =================================
    use strict;
    ...
    $lbox->bind('<<ListboxSelect>>', sub{warn "new ListBox element selecte
    +d!\n"} );
    
    MainLoop;