I do something similar with text files that contain multiple lines of text. Each line is a record in a table containing 14 fields. This is a modification of the code I use so that you can add each of the 255+ records to a table. It's untested and may require some changes to suit your application. You must also add the reference Microsoft Scripting Runtime to your project.
Code:
Private Sub ImportFile(sFilePath As String)
Dim oFso As New FileSystemObject
Dim oTs As TextStream
Dim oRs As DAO.Recordset
Dim vValues() As Variant
Dim exp As Integer
Set oTs = oFso.OpenTextFile(sFilePath, ForReading)
vValues = Split(oTs.ReadAll, "~")
Set oRs = CurrentDB.OpenRecordset("YourTableName", , dbAppendOnly)
For exp = 0 To UBound(vValues)
oRs.AddNew
oRs!YourFieldName = vValues(exp)
oRs.Update
Next exp
oRs.Close
End Sub