Help for this page

Select Code to Download


  1. or download this
    sub OpenAndSaveXLS{
        (my $xlsfile)=@_;
        if((-e $xlsfile) and (!isFileInUse($xlsfile))){
    ...
            return 0;
        }
    }
    
  2. or download this
    Helper::OpenAndSaveXLS("D:/foo.xls");
    Helper::OpenAndSaveXLS("D:/foo2.xls");