B
BeWyched
Hi
I have a routine that creates a compressed file using:
Open "path to folder/xyz.zip" For Output As #1
Close #1
This works perfectly fine. The xyz.zip file is created as a compressed file.
However, I see numerous forum posts that imply a Print command must be used
to print into the file header in order that the file is compressed:
Open "path to folder/xyz.zip" For Output As #1
Print #1, Chr$(80) & Chr$(75) & Chr$(5) & Chr$(6) & String(18, 0)
Close #1
This also works fine but the extra Print command seems redundant. Anyone
know what it's supposed to do?
Cheers all and have a great Xmas.
BW
I have a routine that creates a compressed file using:
Open "path to folder/xyz.zip" For Output As #1
Close #1
This works perfectly fine. The xyz.zip file is created as a compressed file.
However, I see numerous forum posts that imply a Print command must be used
to print into the file header in order that the file is compressed:
Open "path to folder/xyz.zip" For Output As #1
Print #1, Chr$(80) & Chr$(75) & Chr$(5) & Chr$(6) & String(18, 0)
Close #1
This also works fine but the extra Print command seems redundant. Anyone
know what it's supposed to do?
Cheers all and have a great Xmas.
BW