Help for this page

Select Code to Download


  1. or download this
        $mw_text->add('Label', -text => $label_str)->pack;
    
  2. or download this
    foreach $text_item (@$ref_text_array) {
        chomp($text_item);
        $text_str .= $text_item . "\n";
    }
    
  3. or download this
        $mw_text->add('Text',
                -scrollbars => "e",
    ...
                -height => 35,
                -text   => $text_str
                )->pack();