Help for this page

Select Code to Download


  1. or download this
    use Tk;
    use Tk::JComboBox;
    ...
       $jcb->removeAllItems;
       $jcb->configure(-choices => \@items) if @items;
    }
    
  2. or download this
    sub addItems {
       my @items = split(/ /, $entry->get());
    ...
       $jcb->configure(-choices => \@items) if @items;
       $jcb->PopupCreate;
    }