Please help. I am trying to unzip files in Access 97 VBA and extract them into a directory. Before my IT department upgraded our computers from Windows 2000 to Windows XP I had a shell command in my module that did the following:
target = "C:\temp\NYISO"
Shell ("C:\Program Files\WinZip\WINZIP32.EXE -min -e -o " _ & """" & source_file & """" & " " & """" & target & """")
With the upgrade to XP my IT has removed the WINZIP32 application.
How do modify this code to extract the files?
Thank you,
Becky
target = "C:\temp\NYISO"
Shell ("C:\Program Files\WinZip\WINZIP32.EXE -min -e -o " _ & """" & source_file & """" & " " & """" & target & """")
With the upgrade to XP my IT has removed the WINZIP32 application.
How do modify this code to extract the files?
Thank you,
Becky