Help for this page

Select Code to Download


  1. or download this
    my $reg=$top->Entry(width=>30,
                        -font=>12,
    ...
                        -validatecommand=>\&setting,
                        -validate=>'all',
                        )->pack();
    
  2. or download this
    my $i=$frame1->Checkbutton(
                            -bg=>COLOR,
    ...
                            )->pack(
                                     -side=>'left',
                                     );
    
  3. or download this
    sub setting{
                if (substr($regex,0,2)eq 'tr') 
    ...
                else 
                   {$state='active'};
                }