Help for this page

Select Code to Download


  1. or download this
    $exit_frame->Button(-text => "Track",
            -command => [ \&track_changes, ($listbox, $output, $report_typ
    +e) ])->pack;
    
  2. or download this
    $exit_frame->Button(-text => "Track",
            -command => [ \&track_changes, ($listbox, \$output, \$report_t
    +ype) ])->pack;
    
  3. or download this
    sub track_changes {
            my ($listbox, $output_ref, $report_type_ref) = @_;
    ...
            print "$$report_type_ref\n";
    }