Sareste cosi gentili da darmi una mano?
Ho salvato un file.txt in c: avrei bisogno di sapere come potrei fare per leggerlo in una textbox ad un intervallo di tempo, ossia che ogni tot vada in automatico a leggere la stringa successiva.
Questo è il codice, mille grazie!!!
Imports System.IO
Imports System.IO.File
Public Class Form1
Dim fullPath As String = "C:\test7.txt"
Dim linee As New List(Of String)
Dim linea As String
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
If Not IO.File.Exists(fullPath) Then
MessageBox.Show("Il non esiste!")
Exit Sub
End If
Using SR As New IO.StreamReader(fullPath)
linea = SR.ReadLine
Do Until linea Is Nothing
linee.Add(linea)
linea = SR.ReadLine
Loop
TextBox1.Text = String.Join(Environment.NewLine, linee)
End Using
End Sub
End Class