从文本文件中写入的路径打开文件?

时间:2017-02-28 15:09:09

标签: vb.net visual-studio

Public Class Form1

    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Dim objectreader As New System.IO.StreamReader(TextBox1.Text)
        System.Diagnostics.Process.Start("TextBox2.Text = objectreader.ReadToEnd()")
        objectreader.Close()
    End Sub
End Class

我正在尝试从文本文件中读取我已经写入文件的路径。我已经能够使用System.Diagnostics.Process.Start()打开文件了,我能够使用StreamReader从文本文件中读取,但我无法与之相关。如何从文本文件中取出文本并将其放在System.Diagnostics.Process.Start("here")中以打开文件。我正在使用vb.net visual studio 2013。

1 个答案:

答案 0 :(得分:0)

删除引号。您没有提供字符串文字,而是提供方法调用的结果:

TextBox2.Text = objectreader.ReadToEnd()
System.Diagnostics.Process.Start(TextBox2.Text)