Help for this page

Select Code to Download


  1. or download this
    $debugger = new Win32::OLE( 'Excel.Application', \&main::QuitApp );
    
  2. or download this
        $ex = Win32::OLE->new('Excel.Application', sub {$_[0]->Quit;})
        # calls $ex->Quit() when the Perl program ends or $ex goes out of 
    +scope