![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
![]() |
| |
| | #1 (permalink) |
| | WinZip Question 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. |
My System Specs![]() |
| | #2 (permalink) |
| | Re: WinZip Question 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" <LarryP@xxxxxx> wrote in message news:709FA3B5-42CE-4A8E-A920-C3E0723C13E1@xxxxxx Quote: > 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. |
My System Specs![]() |
| | #3 (permalink) |
| | Re: WinZip Question "LarryP" <LarryP@xxxxxx> wrote in message news:709FA3B5-42CE-4A8E-A920-C3E0723C13E1@xxxxxx Quote: > 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. 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 |
My System Specs![]() |
| | #4 (permalink) |
| | Re: WinZip Question 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" <LarryP@xxxxxx> wrote in message news:709FA3B5-42CE-4A8E-A920-C3E0723C13E1@xxxxxx Quote: > 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. |
My System Specs![]() |
| | #5 (permalink) |
| | Re: WinZip Question LarryP wrote: Quote: > 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. 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/ |
My System Specs![]() |
| | #6 (permalink) |
| | Re: WinZip Question In article <eExiiHvIJHA.2208@xxxxxx>, Paul Montgumdrop <Paul@xxxxxx> wrote: Quote: >LarryP wrote: Quote: >> 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. http://www.winzip.com/prodpagecl.htm |
My System Specs![]() |
| | #7 (permalink) |
| | Re: WinZip Question 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: Quote: > In article <eExiiHvIJHA.2208@xxxxxx>, > Paul Montgumdrop <Paul@xxxxxx> wrote: Quote: > >LarryP wrote: Quote: > >> 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 > > > |
My System Specs![]() |
| | #8 (permalink) |
| | Re: WinZip Question 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: Quote: > 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" <LarryP@xxxxxx> wrote in message > news:709FA3B5-42CE-4A8E-A920-C3E0723C13E1@xxxxxx Quote: > > 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. |
My System Specs![]() |
| | #9 (permalink) |
| | Re: WinZip Question the wharf rat wrote: Quote: > In article <eExiiHvIJHA.2208@xxxxxx>, > Paul Montgumdrop <Paul@xxxxxx> wrote: Quote: >> LarryP wrote: Quote: >>> 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 >> 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 > > 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. |
My System Specs![]() |
| | #10 (permalink) |
| | Re: WinZip Question On Tue, 30 Sep 2008 05:58:01 -0700, LarryP <LarryP@xxxxxx> wrote: Quote: > 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 |
My System Specs![]() |
![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
WinZip | Software | |||
| winzip | PowerShell | |||
winzip | General Discussion | |||
| WinZip Installation | Vista account administration | |||
| Winzip and Vista question | Vista General | |||