I currently have a workaround for FabZip 1.52 with VO 2.7
There it is :
In FabZip 1.52 Lib, in module ZipFile, open the entity __CheckIfLastDisk
and go to line 43, you should find the following line :
SELF:nFileSize := SELF:oInFile:Seek( -1 * _sizeOf(
_fabZipEndOfCentral ), FS_END )
replace it by (Notice the LONG() cast )
SELF:nFileSize := SELF:oInFile:Seek( -1 * LONG(_sizeOf(
_fabZipEndOfCentral )), FS_END )
This solve the bug in UpdateContents() method.
All other libs are provided with VO2.7 and have been heavily tested with
it, everything should be fine; but please report any trouble.
HTH,
Fabrice