Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim strTextLine As String
Open "C:\Temp\MyFile.txt" For Input As #1
Do While Not EOF(1) [green]' Loop until end of file.[/green]
Line Input #1, strTextLine [green]' Read line into variable.
'Do what you need here[/green]
Loop
Close #1