This is my first time post tips. Hope it can help your guys. Please feel free to comment, since it is a idea from the vbscript forum.
Download File Below (Freeware):
Xzip.dll
From
(navigate to "products" and then scroll down and look for their zip component)
or
1.After download the file.Follow Link Below to Read the Installation Instruction :
2. Now u can create a zip file in VFP with line below :
3. Unzip a zipfile with line below :
Idea come from a thread from :
zip folders
thread329-715047
in the VbScript Forum.
Download File Below (Freeware):
Xzip.dll
From
(navigate to "products" and then scroll down and look for their zip component)
or
1.After download the file.Follow Link Below to Read the Installation Instruction :
2. Now u can create a zip file in VFP with line below :
Code:
oZip = CreateObject("XStandard.Zip")
oZip.Pack "C:\Temp\*.jpg", "C:\Temp\images.zip"
3. Unzip a zipfile with line below :
Code:
oZip = CreateObject("XStandard.Zip")
oZip.UnPack "C:\Temp\images.zip", "C:\Temp\"
Idea come from a thread from :
zip folders
thread329-715047
in the VbScript Forum.