Dear Expert,
I created a MS Access program that unzips a file using XP's native unzip program.
I now need to run this program on an Windows 2000 Advanced Server.
I noticed that on this server the unzip software is called IZArc Archiver. ( I never heard of this program)
I need to be able to use the XP native unzip program because the following line of code doesn't work with IZArc Archiver.
How can I download the XP native Unzip Program ( I believe it is called "Compressed (Zipped) Folders) for Windows 2000 Advanced Server?
Please note for some reason when I try to Unzip the file using WinZip I get a totally different error.
At this point the code works flawlessly with the Windows XP native unzip program.
Thank you
I created a MS Access program that unzips a file using XP's native unzip program.
I now need to run this program on an Windows 2000 Advanced Server.
I noticed that on this server the unzip software is called IZArc Archiver. ( I never heard of this program)
I need to be able to use the XP native unzip program because the following line of code doesn't work with IZArc Archiver.
Code:
'Unzipping:
Set objShell = CreateObject("Shell.Application")
objShell.NameSpace(extractZipTo).CopyHere objShell.NameSpace(pathToZipFile).Items
How can I download the XP native Unzip Program ( I believe it is called "Compressed (Zipped) Folders) for Windows 2000 Advanced Server?
Please note for some reason when I try to Unzip the file using WinZip I get a totally different error.
At this point the code works flawlessly with the Windows XP native unzip program.
Thank you