Spreadsheet-ParseExcel - Re: Problem running demo

Posted on Sat Jul 19 12:25:35 2008 by runjun in response to 4169 (See the whole thread of 3)
Re: Problem running demo
#!usr/bin/perl-w use strict; use Spreadsheet::ParseExcel; use Spreadsheet::ParseExcel::SaveParser; my $oBook = Spreadsheet::ParseExcel::SaveParser::Workbook->Parse('Excel/Test97.xls'); my $oWs = $oBook->AddWorksheet('TEST1'); $oWs->AddCell(10, 1, 'New Cell'); $oBook->SaveAs('iftest.xls');
It will now work with original version also
Write a response