This sample shows u how u should open and read the file:

VB Code:
  1. Option Explicit
  2.  
  3. Private Sub Command1_Click()
  4.     Dim arrData() As String
  5.     Dim s As String
  6.     Dim i As Integer
  7.    
  8.     Open "c:\c1_1801t113036_testinga45minuterun.txt" For Input As #1
  9.     Do While Not EOF(1)
  10.         Line Input #1, s
  11.         arrData = Split(s, ",")
  12.         For i = 0 To UBound(arrData)
  13.             Debug.Print arrData(i)
  14.         Next i
  15.     Loop
  16.     Close #1
  17.  
  18. End Sub

Try the sample in a new project. step throug it and observe.

Now, in order to import the data u would have to put in some more code

eg:

VB Code:
  1. Option Explicit
  2.  
  3. Private Sub Command1_Click()
  4.     Dim arrData() As String
  5.     Dim s As String
  6.     Dim i As Integer
  7.    
  8.     Open "c:\c1_1801t113036_testinga45minuterun.txt" For Input As #1
  9.     Do While Not EOF(1)
  10.         Line Input #1, s
  11.         arrData = Split(s, ",")
  12.         'For each line u will add a new record to the table.
  13.         'do this here.
  14.         For i = 0 To UBound(arrData)
  15.             'instead of debug.print, u should add the values to the
  16.             'correct fields in the record. do that here.
  17.             Debug.Print arrData(i)
  18.         Next i
  19.         'When u get here, a new record has been added. Update it
  20.         'so it is saved.
  21.     Loop
  22.     Close #1
  23.  
  24. End Sub


Hope this is of help to u.