A major part of my program is users saving data to zip files. Then unziping back into the program. Never a problem in 16 bit version. Code doesn't work in 32 bit.
Looked at testzip.prg and testuzip.prg. Not working. Funcs don't exist.
Need help here....THanks in advance.
Harvey
zip files and unzip files
zip files and unzip files
Thank you
Harvey
Harvey
http://forums.fivetechsoft.com/viewtopi ... ight=hbzip
You can search this forum for hbzip if you wish to read more similar posts
You can search this forum for hbzip if you wish to read more similar posts
-
- Posts: 56
- Joined: Mon Jul 03, 2006 2:34 am
I use xHarbour's HB_ZIPFILE().
In its simplest form use:-
HB_ZIPFILE( cZipFile, aFiles2Zip)
Full spec is :
HB_ZIPFILE( <cFile>, <cFileToCompress> | <aFiles>, <nLevel>,;
<bBlock>, <lOverWrite>, <cPassword>, <lWithPath>,; <lWithDrive>, ; <pFileProgress> ) ---> lCompress
For unziping:
HB_UNZIPFILE( <cZipFile>, <bBlock>, <lWithPath>,;
<cPassWord>, <cPath>, <cFile> | <aFile>, <pFileProgress> ) ---> lCompress
Note that you must link HBZIP.lib and ZLIB.lib.
Works really well for me.
Colin
In its simplest form use:-
HB_ZIPFILE( cZipFile, aFiles2Zip)
Full spec is :
HB_ZIPFILE( <cFile>, <cFileToCompress> | <aFiles>, <nLevel>,;
<bBlock>, <lOverWrite>, <cPassword>, <lWithPath>,; <lWithDrive>, ; <pFileProgress> ) ---> lCompress
For unziping:
HB_UNZIPFILE( <cZipFile>, <bBlock>, <lWithPath>,;
<cPassWord>, <cPath>, <cFile> | <aFile>, <pFileProgress> ) ---> lCompress
Note that you must link HBZIP.lib and ZLIB.lib.
Works really well for me.
Colin