|
Hi,
Could you try following modification in ParseExcel.pm?
sub _UnpackRKRec {
#snip
# substr($sWK, 3, 1) &= pack('U', $u31);
substr($sWK, 3, 1) &= pack('c', $u31);
#snip
# substr($sWK, 0, 1) &= pack('U', $u01);
substr($lWK, 0, 1) &= pack('c', $u01);
#snip
}
--
ryoichi
|