Help for this page

Select Code to Download


  1. or download this
    -command => [\&Account_Setup, $acct]
    
  2. or download this
    $f->Radiobutton(-text => "Investment",
        -value => "investment",
        -variable => \$acct)->pack(-side => 'top',
                                       -anchor => 'w');
    
  3. or download this
    sub Account_Setup{
        my ($acct_type) = shift;
        print "Account Type: $acct_type\n";
    }
    
  4. or download this
    -command => sub{ print "Account: $acct\n"; }