Help for this page

Select Code to Download


  1. or download this
        my $hdr = $f->HButton(
                -takefocus=>0,
    ...
        $hdr->update;  # Row 151, New!
    
        $w->Advertise("heading" => $hdr);
    
  2. or download this
            if (defined(my $pixels = $w->cget('-pixelwidth'))) {
                $w->GeometryRequest($pixels, 18); # 18 is New! Was $mw->re
    +qheight before
            }
    
  3. or download this
    use Tk;
    
    ...
    $scrolledMListbox->insert('end', [ "c", "d", "f", "e"] );
    
    MainLoop;