Now I'm using the code below to select the directory with files to handle:
strFolder = "C:\Persdata\Temp\TextFiles\"
Set fs = CreateObject("Scripting.FileSystemObject")
Set fd = fs.GetFolder(strFolder)
Set fc = fd.Files
For Each f In fc
........
Is it possible to browse to the import-folder ?
strFolder = "C:\Persdata\Temp\TextFiles\"
Set fs = CreateObject("Scripting.FileSystemObject")
Set fd = fs.GetFolder(strFolder)
Set fc = fd.Files
For Each f In fc
........
Is it possible to browse to the import-folder ?