If they are in cronological order, then why not do a loop and assign the filename to variable? First you would need to get how many files were in the directory, then, you would assign this number to a variable and make the variable the condition on which the loop should end...
Dim IntFile as Integer
Dim NumberOfFiles as long
Dim FileNme as string
Dim InString as string
Do Until NumberOfFiles = 0
DoEvents
Intfile = FreeFile()
Open "c:\YourDirectory\" & FileNme for input as #IntFile
Do while not EOF(IntFile)
DoEvents
Input #IntFile, Instring
loop
NumberOfFiles = NumberOfFiles - 1
loop
To determine how many files are in the directory you can do this a few different ways, the easiest would to be to add a filelistbox to a form and set the directory to where your files are located, then simply do this...
NumberOfFiles = File1.ListCount
You can also look into the FileSystemObject, this gets a bit more complex, but with a bit of effort you will be able to work through it. I hope this helps you a bit...
LF
"As far as the laws of mathematics refer to reality, they are not certain; as far as they are certain, they do not refer to reality."--Albert Einstein