the wharf rat wrote:
> In article <>,
> Paul Montgumdrop <> wrote:
>> LarryP wrote:
>>> Anybody know how to run a self-extracting zip file (.exe extension) and
>>> BYPASS the dialog box where you must click Unzip and later Close? When I
>> No, you can't do that with VBA code like you can't do it with VB6 or
>> VB.Net code. Winzip is not a MS Windows add-in. It is a 3rd party tool
>> that must be installed on the Windows platform like other 3rd party's
>> software applications.
>
> Use the Winzip command line add-on:
>
> http://www.winzip.com/prodpagecl.htm
>
>
I wouldn't be using it in a serious application like a Windows NT
service or Console application that was a Web service client solution
that was compressing XML files to be transmitted to a Web service. I
wouldn't want to have anything to do with some kind of a Command line
arguments.
You set reference to a zip library in the project, you instantiate the
zlib object to do the compress or decompress and error trap in code if
something goes wrong.
Same thing being done on the Web service side project with the
decompression as it has a reference set to the compression library.
No Mickey Mouse Winzip anything. I wouldn't use it programming wise
under any circumstances.
Nothing against you personally or Winzip, because I use it at the
desktop for my personal usage, but no professional programmer that I
know of would use Winzip in code.