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 Data() As String
Data = Split(CreateObject("Scripting.FileSystemObject").OpenTextFile("[!]C:\Lines.txt[/!]").ReadAll, vbCrLf)
Call MsgBox(Data(UBound(Data) - 3))
Try
Dim lines() As String = IO.File.ReadAllLines(My.Computer.FileSystem.SpecialDirectories.Desktop + "\lines.txt")
MessageBox.Show(lines(lines.Length - 4))
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try