Help for this page

Select Code to Download


  1. or download this
    use Tk;
    use strict;
    ...
    $mw->Entry(textvariable => \$val)->pack;
    
    MainLoop;
    
  2. or download this
    $mw->Checkbutton(onvalue => 1,
                     offvalue => 0,
                     variable => \$val);
    
  3. or download this
    if ($val) {
         ...
    } else {
         ...
    }