http://qs321.pair.com?node_id=376087


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

Pragmatic! You could also do:

{ local $SIG{ __WARN__ } = sub{}; $oBook = $oExcel->Parse($disclaimer) || die "Unable to parse $disclaimer"; }

ps. Dropping a line to the module owner might be good too.


Examine what is said, not who speaks.
"Efficiency is intelligent laziness." -David Dunham
"Think for yourself!" - Abigail
"Memory, processor, disk in that order on the hardware side. Algorithm, algoritm, algorithm on the code side." - tachyon

Replies are listed 'Best First'.
Re^6: Perl 5.8.? and ParseExcel
by sth (Priest) on Jul 20, 2004 at 21:51 UTC

    { local $SIG{ __WARN__ } = sub{}; $oBook = $oExcel->Parse($disclaimer) || die "Unable to parse $disclaimer"; }

    ..thanks, I like this better. :-)

    ps. Dropping a line to the module owner might be good too.

    ...I was thinking that myself.

    Once again Thanks,

    sth