Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

import csv from .zip file

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I currently have a procedure to import text files into my db. The spreadsheets are getting huge, so the client sends them zipped. Anyone know script to unzip a file then import into access.

I'm trying to build a form so a receptionist can do the import.

thanks
 
Not sure if this will help
But WinZIP can be run from the Access Shell command
like so

Dim x As Variant
Dim filename, folder As String
filename = "C:\Program Files\Winzip\example.zip"
folder = "C:\Test123"
x = Shell("C:\Program Files\Winzip\WINZIP32.EXE -e -o " & filename & folder, 1)

I did not get it to work correctly... Ran out of time

here is a list of parameters on thier WEB site
DougP, MCP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top