This problem was solved for me by the solution posted in
<p> </p>
http://idahospuds.blogspot.com/2006_03_01_idaho
spuds_archive.html
<p> </p>
by changing --
<p> </p><p> </p>
substr($sWk, 3, 1) &= pack('c',
unpack("c",substr($sWk, 3, 1)) &
0xFC);<p> </p>
substr($lWk, 0, 1) &= pack('c',
unpack("c",substr($lWk, 0, 1)) & 0xFC);
<p> </p> <p> </p>
to
<p> </p> <p> </p>
substr($sWk, 3, 1) &= pack('C',
unpack("C",substr($sWk, 3, 1)) &
0xFC);<p> </p>
substr($lWk, 0, 1) &= pack('C',
unpack("C",substr($lWk, 0, 1)) & 0xFC);
<p> </p><p> </p>
In other words, change the quoted lower case "c"
to uppercase on lines 1789 and 1790 in the ParseExcel.pm
file in the Spreadsheet::ParseExcel version 0.2603
distribution.
To write a respons, access
http://ww
w.cpanforum.com/response_form/2324
To see the full thread, access
http://www.cpan
forum.com/threads/1312
--
You are getting this messages from www.cpanforum.com
To change your subscription information visit http://www.cpanforum.
com/mypan/
|