Maybe something like this.
VB Code:
  1. Private Sub Command1_Click()
  2.     Dim strPath As String
  3.     Dim strFile As String
  4.     Dim strTemp As String
  5.    
  6.     strPath = "c:\testFolder\"
  7.     'Set strFile to the first file in the folder
  8.     strFile = Dir(strPath & "*")
  9.    
  10.     'Loop until strFile is empty, indicating that there are no more files
  11.     Do Until strFile = ""
  12.         Open strPath & strFile For Input As #1
  13.         Do While Not EOF(1)
  14.             Line Input #1, strTemp
  15.             Debug.Print strTemp
  16.         Loop
  17.         Close #1
  18.         'Set strFile to the next file in the folder
  19.         strFile = Dir
  20.     Loop
  21. End Sub