Dim fs, a, str1
Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.OpenTextFile("c:\testfile.txt", ForReading, False)
Do While a.AtEndOfStream <> True
    str1=mid(a.ReadLine,1,8)
    adodc1.recordset.addnew
    adodc1.recordset.fields("字段名")=str1
Loop
a.Close