Joe,
Assuming that you have an existing table, the following is
a start.
I just typed it into NotePad, but I hope it helps.
' *******************************************
Private Sub ReadText_OnClick() ' Assign to a button on a form
Dim dbs As Database
Dim rst As RecordSet
Dim Buffer As String
Set dbs = CurrentDb
Set rst = dbs.OpenRecordSet("MyTable")
Open "Test.txt" for input as #1
Line Input #1, Buffer
While Not EOF(1)
If InStr(Buffer, "Name:", 1) > 0 Then
rst.AddNew
rst!Name = Mid(Buffer, 19, Len(Buffer)
End If
'
If InStr(Buffer, "Address:", 1) > 0 Then
rst!Address = Mid(Buffer, 19, Len(Buffer)
End If
'
' Repeat for rest of fields ...
'
If InStr(Buffer, "USLacrosseNumber:", 1) > 0 Then
rst!USLacrosseNumber = Mid(Buffer, 19, Len(Buffer)
rst.Update
End If
'
Line Input #1, Buffer
Wend
Close #1
Set rst = Nothing
Set dbs = Nothing
End Sub
' *******************************************
Regards,
Wayne