RosettaCodeData/Task/Input-loop/VBA/input-loop.vba

11 lines
333 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Public Sub test()
Dim filesystem As Object, stream As Object, line As String
Set filesystem = CreateObject("Scripting.FileSystemObject")
Set stream = filesystem.OpenTextFile("D:\test.txt")
Do While stream.AtEndOfStream <> True
line = stream.ReadLine
Debug.Print line
Loop
stream.Close
End Sub