I have the following sub for a button ob a custom userform to get a
folder name:
Private Sub cmdChooseDir_Click()
With Application.FileDialog(msoFileDialogFolderPicker)
.InitialFileName = Application.DefaultFilePath & "\"
.Title = "Please choose a directory _
containing your data files."
.Show
If .SelectedItems.Count = 0 Then
MsgBox "Please re-enter."
Else
lblDirectory.Caption = .SelectedItems(1)
End If
End With
End Sub
and I have a sub in a module to import the files and save them as excel
files automatically:
Public Sub AutomateDataImport()
Application.ScreenUpdating = False
Application.DisplayAlerts = False
With Application.FileSearch
.NewSearch
.LookIn = "C:\Data"
.SearchSubFolders = True
.FileName = "*.txt"
.MatchTextExactly = True
.FileType = msoFileTypeAllFiles
If .Execute() > 0 Then
MsgBox "There were " & .FoundFiles.Count & _
" file(s) found."
For I = 1 To .FoundFiles.Count
Application.DisplayAlerts = False
Opentxt = .FoundFiles(I)
Workbooks.OpenText FileName:=FNameImport, _
DataType:=xlDelimited, Tab:=True
ActiveWorkbook.SaveAs Opentxt, xlNormal
Next I
End With
End Sub
How could I pass the directory obtained from sub#1 to sub#2's .lookin
object for importing all the files within?
Thanks.
Maurice
*** Sent via Developersdex http://www.developersdex.com ***
Bookmarks