0

好的,这是我当前的代码。我无法读取文件并相应地填充文本框。加载文件后(我认为是),下面列出的任何文本框中都没有填充任何内容。基本上我不确定文件是否正在被读取。

有什么建议么?

        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
4

1 回答 1

1

呃这是什么

If My.Computer.FileSystem.FileExists("path_to_file") Then
  Dim ioFile As New System.IO.StreamReader("path_to_file" + "filename")

应该

If My.Computer.FileSystem.FileExists(OpenFileDialog2.FileName) Then
  Dim ioFile As New System.IO.StreamReader(OpenFileDialog2.FileName)
于 2012-05-08T14:59:32.560 回答