Spreadsheet-ParseExcel - Re: unable to run Spreadsheet::ParseExcel::SaveParser

Posted on Sat Jul 19 12:23:11 2008 by runjun in response to 8331 (See the whole thread of 3)
Re: unable to run Spreadsheet::ParseExcel::SaveParser
thanx I was able to run the prog & also found one more bug(use of global variable) so mow the final cose is:
#!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');
Write a response