如何用Textbox.text打开Notepadd ++?

时间:2013-08-30 12:34:29

标签: vb.net visual-studio-2012 notepad++

我正在使用一个小程序来抓取对象模型中的脚本。我可以让脚本显示在文本框中,我可以通过点击按钮启动记事本++。

我想要做的是在notepad ++中打开文本框中的文本,以便我可以编辑脚本。

有没有人有任何想法?

1 个答案:

答案 0 :(得分:2)

将文本框中的文本保存到文件中,如下所示:

System.IO.File.WriteAllText("path and name of text file.txt", textBox1.Text)

现在,您可以强制用户使用记事本:

Process.Start("path to notepad.exe", "path and name of text file.txt")

或者你可以通过这样做让系统确定用户的首选应用程序(比如说他们有Notepad ++)是.txt

System.Diagnostics.Process.Start("path and name of text file.txt")