Help for this page

Select Code to Download


  1. or download this
       open(INPUT,$outFile) or die "Can't open file";
    
  2. or download this
        my $workbook = Spreadsheet::WriteExcel->new($outFile);
        my $worksheet = $workbook->add_worksheet();
    
  3. or download this
    $worksheet->write(0,$colCount,$el,$gFmtBold)   ;
    
  4. or download this
            $worksheet->write($rowCount, $colCount, $el, $gFmtBold);
    
  5. or download this
                              $worksheet->set_column(0,$colCount,40);
    
  6. or download this
            $worksheet->set_column($colCount, $colCount, 40);