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 に答える