Per leggere un file di testo (.txt) all'interno di un TextBox , inserisci un OpenFileDialog , un Button e una TextBox , all'interno del Button scrivi :
OpenFileDialog1.ShowDialog()
Dim fname As String = OpenFileDialog1.FileName
If System.IO.File.Exists(fname) Then
Dim read As New System.IO.StreamReader(fname)
TextBox4.Text = read.ReadToEnd
End If
![]()

Rispondi quotando