please help, since I can't find anywhere on how to solve the problem
I create a bullet proof script to read xls file because my project will allow users to post any excel file to our web then process the xls to html. problem came when we test to post using corrupted excel file. sure, ms excel 2003 can detect the corrupted file and try to recover the file easily, but not the Spreadsheet-ParseExcel module
$fExcel = Spreadsheet::ParseExcel->new;
$wBook = $fExcel->Parse($filename); #parse xls file -> hang on here
it just hang when try to parse, thus forced me to use ctrl-c to stop it
is there anyway to trap this kind of error?
I need to solve the problem otherwise I can't open the web to public
ps: i'm using Win32 Perl