Help for this page

Select Code to Download


  1. or download this
    $tm->focus;
    $tm->activate("topleft");
    
  2. or download this
    $tm->activate("topleft");
    $tm->focus;
    
  3. or download this
    $tm->colWidth (0, 25);
    print $tm->colWidth(), "\n";
    
  4. or download this
    0 25
    
  5. or download this
    $tm->colWidth (-10, 32);
    $,="|";
    print $tm->colWidth(), "\n";
    
  6. or download this
    0 25|-10 32|
    
  7. or download this
    sub validate_browse { 
    $tm->colWidth (-10, 32);
    $tm->configure(-padx =>($tm->cget(-padx))); #display refresh trick,   
    }