Jasper,
You need some VBA code to retrieve the file names in the particular
directory, and import one by one. Here's some sample (untested) code:
Dim fs, fldr, fls, fl
Set fs = CreateObject("Scripting.FileSystemObject")
Set fldr = fs.getfolder("C:\temp\")
Set fls = fldr.files
For Each fl In fls
If Right(fl.Name, 4) = ".CSV" Then
DoCmd.TransferText acImportDelim, "YourSpec", _
"TargetTable", fl.Name
End If
Next fl
HTH,
Nikos
> Hello,
>
[quoted text clipped - 8 lines]
>
> Jasper