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