わかりました、これが私の現在のコードです。ファイルを読み込んで、それに応じてテキストボックスに入力するのに問題があります。ファイルを読み込んだ後 (だと思います)、以下にリストされているテキストボックスには何も入力されていません。基本的に、ファイルが読み取られているかどうかはわかりません。
助言がありますか?
If OpenFileDialog2.ShowDialog() = DialogResult.OK Then
If My.Computer.FileSystem.FileExists("path_to_file") Then
Dim ioFile As New System.IO.StreamReader("path_to_file" + "filename")
TextBox1.Text = ioFile.ReadLine() 'Adds the first line
TextBox2.Text = ioFile.ReadLine() 'Adds the second line
TextBox3.Text = ioFile.ReadLine() 'Adds the third line
TextBox4.Text = ioFile.ReadLine() 'Adds the fourth line
TextBox5.Text = ioFile.ReadLine() 'Adds the fifth line
End If
End If