http://www.perlmonks.org?node_id=376082


in reply to Re^3: Perl 5.8.? and ParseExcel
in thread Perl 5.8.? and ParseExcel

-Thanks for the replies BrowserUk. Right now I put in a hack until I can figure out or find an answer,

{ local *STDERR; open(STDERR, '>/dev/null'); $oBook = $oExcel->Parse($disclaimer) || die "Unable to parse $ +disclaimer"; }

..not the right solution, but it works for now.

Thanks Again, sth