Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > WinZip Question

Reply
Thread Tools Display Modes

WinZip Question

 
 
LarryP
Guest
Posts: n/a

 
      09-29-2008
I'm actually on Windows XP, but couldn't find a group for that (every other
flavor of Windows, but not that!), and my question is actually about WinZip,
but hey, that's sort of a Windows add-in, right?

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
call it from MSAccess VBA code I just want it to go ahead and perform the
unzip without bugging the user for any input. I have the unzip destination
already hardwired, so would rather not have the user involved at all.
 
Reply With Quote
 
 
 
 
KDE
Guest
Posts: n/a

 
      09-29-2008
right click on the zip file, you should be presented with several options.
Extract. (which will start the unzip wizard)
Extract to... (where you will have to designate a location) or Extract to
"name of zip" (where the zip will be extracted to a new folder created in
the location the zip file is in)


"LarryP" <> wrote in message
news:709FA3B5-42CE-4A8E-A920-...
> I'm actually on Windows XP, but couldn't find a group for that (every
> other
> flavor of Windows, but not that!), and my question is actually about
> WinZip,
> but hey, that's sort of a Windows add-in, right?
>
> 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
> call it from MSAccess VBA code I just want it to go ahead and perform the
> unzip without bugging the user for any input. I have the unzip
> destination
> already hardwired, so would rather not have the user involved at all.



 
Reply With Quote
 
LVTravel
Guest
Posts: n/a

 
      09-30-2008


"LarryP" <> wrote in message
news:709FA3B5-42CE-4A8E-A920-...
> I'm actually on Windows XP, but couldn't find a group for that (every
> other
> flavor of Windows, but not that!), and my question is actually about
> WinZip,
> but hey, that's sort of a Windows add-in, right?
>
> 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
> call it from MSAccess VBA code I just want it to go ahead and perform the
> unzip without bugging the user for any input. I have the unzip
> destination
> already hardwired, so would rather not have the user involved at all.


You can't do that with the personal edition Self Extractor that comes with
WinZip.

See http://www.winzip.com/prodpagese.htm for information on their Self
Extractor 3.1 program that appears to do exactly what you want. $49.95


 
Reply With Quote
 
Andrew Murray
Guest
Posts: n/a

 
      09-30-2008
You mean you couldn't find microsoft.public.windowsxp.general, or
microsoft.public.windowsxp.basics?

It's on msnews.microsoft.com - subscribe through Windows Mail, not the
clunking web interface.




"LarryP" <> wrote in message
news:709FA3B5-42CE-4A8E-A920-...
> I'm actually on Windows XP, but couldn't find a group for that (every
> other
> flavor of Windows, but not that!), and my question is actually about
> WinZip,
> but hey, that's sort of a Windows add-in, right?
>
> 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
> call it from MSAccess VBA code I just want it to go ahead and perform the
> unzip without bugging the user for any input. I have the unzip
> destination
> already hardwired, so would rather not have the user involved at all.


 
Reply With Quote
 
Paul Montgumdrop
Guest
Posts: n/a

 
      09-30-2008
LarryP wrote:
> I'm actually on Windows XP, but couldn't find a group for that (every other
> flavor of Windows, but not that!), and my question is actually about WinZip,
> but hey, that's sort of a Windows add-in, right?
>
> 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
> call it from MSAccess VBA code I just want it to go ahead and perform the
> unzip without bugging the user for any input. I have the unzip destination
> already hardwired, so would rather not have the user involved at all.


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.

You call that Winzip.exe from code, tt's like you're setting there at
the Command Prompt staring Winzip and the user must interact with the
Winzip screens.

There are free 3rd party compress/decompress libraries in a DLL format
that your VBA solution can call that compresses or decompress zip files
without user intervention, like Zlib and others.

http://www.zlib.net/
 
Reply With Quote
 
the wharf rat
Guest
Posts: n/a

 
      09-30-2008
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


 
Reply With Quote
 
LarryP
Guest
Posts: n/a

 
      09-30-2008
Thanks, wr. Our enterprise is still plugging along with 10.0 at the moment,
but I imagine 12.0 will come along in due course, so I'll download that
add-on for later use.

"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
>
>
>

 
Reply With Quote
 
LarryP
Guest
Posts: n/a

 
      09-30-2008
I found lots of XP groups for discussions, but when I went to the
post-a-question screen I didn't find anything XP in the dropdown.

"Andrew Murray" wrote:

> You mean you couldn't find microsoft.public.windowsxp.general, or
> microsoft.public.windowsxp.basics?
>
> It's on msnews.microsoft.com - subscribe through Windows Mail, not the
> clunking web interface.
>
>
>
>
> "LarryP" <> wrote in message
> news:709FA3B5-42CE-4A8E-A920-...
> > I'm actually on Windows XP, but couldn't find a group for that (every
> > other
> > flavor of Windows, but not that!), and my question is actually about
> > WinZip,
> > but hey, that's sort of a Windows add-in, right?
> >
> > 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
> > call it from MSAccess VBA code I just want it to go ahead and perform the
> > unzip without bugging the user for any input. I have the unzip
> > destination
> > already hardwired, so would rather not have the user involved at all.

>

 
Reply With Quote
 
Paul Montgumdrop
Guest
Posts: n/a

 
      09-30-2008
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.
 
Reply With Quote
 
Ken Blake, MVP
Guest
Posts: n/a

 
      09-30-2008
On Tue, 30 Sep 2008 05:58:01 -0700, LarryP
<> wrote:

> I found lots of XP groups for discussions, but when I went to the
> post-a-question screen I didn't find anything XP in the dropdown.



You are using the web interface to participate in newsgroups.

The reason you're having such problems is that you are using the awful
web interface to read this newsgroup--it's the slowest, clunkiest,
most error-prone method there is. Do yourself a favor and switch to a
newsreader, such as Outlook Express, which comes with Windows XP. See
http://www.michaelstevenstech.com/ou...snewreader.htm

--
Ken Blake, Microsoft MVP - Windows Desktop Experience
Please Reply to the Newsgroup
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
WinZip Installation Chooch Windows Vista Administration 5 03-26-2008 11:20 PM
winzip rar and other compression Walter_Slipperman Windows Vista General Discussion 2 02-03-2008 09:15 PM
winzip file Angelica907 Windows Vista Mail 0 06-22-2007 02:01 AM
WinZip 10 in TaskBar Spanky McFly Windows Vista General Discussion 6 01-21-2007 10:05 PM
Winzip and Vista question David Sherman Windows Vista General Discussion 3 06-21-2006 01:01 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59