Private Sub Command1_Click()
'Declare variables.
Dim fso As New FileSystemObject
Dim ts As TextStream
'Open file.
Set ts = fso.OpenTextFile(Environ("windir") & "\system.ini")
'Loop while not at the end of the file.
Do While Not ts.AtEndOfStream
Debug.Print ts.ReadLine
Loop
'Close the file.
ts.Close
End Sub
С MSDN FSO Объект
Намного удобнее, чем Open sPath, #FileNo
. Вам нужно добавить FSO в ваш проект с помощью «Инструменты -> Ссылки», как это описано в MSDN.