|
Hi, i'm very new of Perl, so forgive if the question is stupid.
I tried to compile a simple program and i get:
Base class package "Spreadsheet::ParseExcel::Workbook" is empty.
(Perhaps you need to 'use' the module which defines that package first.) at Spreadsheet/Par
+seExcel/SaveParser.pm line 14
BEGIN failed--compilation aborted at Spreadsheet/ParseExcel/SaveParser.pm line 14.
Compilation failed in require at ./conv.pl line 18.
BEGIN failed--compilation aborted at ./conv.pl line 18.
The program starts like:
use strict;
use Spreadsheet::WriteExcel;
use Spreadsheet::ParseExcel::SaveParser;
I can't see what's going wrong.. But there is no Workbook.pm inside Spreadsheet/ParceExcel.. is it normal?
Thanks
|