Use the Open Statement to open an ASCII file
this is a Brief example not complete
'Open your database here
'open .INI file
Open "c:\your.ini" for Input as #1
' Loop through each line of .INI
Do While Not EOF(1)
Input #1, MyString 'get line of .INI file
'Add a record to database
rst.addnew
rst!yourfield = MyString
rst.update
loop
Close #1
db.close
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.