Spreadsheet-ParseExcel - Re: error when creating executable with Spreadsheet::ParseExcel

Posted on Thu May 15 17:26:32 2008 by lansky243 in response to 4968 (See the whole thread of 5)
Re: error when creating executable with Spreadsheet::ParseExcel
You must include this into the script you are compiling:
#perl2exe_include Math::BigInt::Calc;
I had put it before the library loading so the final code looked likes like this:
#Perl2Exe #perl2exe_include Math::BigInt::Calc; use strict; use Spreadsheet::WriteExcel; use Spreadsheet::ParseExcel::Simple;
Afterthat I was able to compile it with perl2exe without any problem. L243
Write a response