Title is not all that but here goes.
I want to work thru all files in a particular folder, so...
That works, but why then if I put stuff inbetween to handle the file(s) in the folder, i only get 1! file? While there are about 90 there....
I have a silly workaround in place but am wondering HOW WHEN WHY WHAT is going on? Does anyone know?
Greetz
I want to work thru all files in a particular folder, so...
Code:
Sub t2Process(FilterNR As String, FreeText As String)
Dim myFile As String, myfile2 As String, aNumber As String
myFile = Dir(t2ImportFolder & "*." & FileType)
Do While myFile <> vbNullString
myFile = Dir()
Loop
End Sub
I have a silly workaround in place but am wondering HOW WHEN WHY WHAT is going on? Does anyone know?
Greetz