Help for this page

Select Code to Download


  1. or download this
      my $mode = $cw->cget('-validate');
      if ($mode =~ /match/) {
        $cw->configure(-validate => 'none');
      }
    
  2. or download this
      my $mode = $cw->cget('-validate');
      if (defined $mode && $mode =~ /match/) {  # <== change
        $cw->configure(-validate => 'none');
      }