我想运行一个程序,这个程序对我textbox.text内显示的路径的文件执行操作,,我如何能让我的程序知道要对textbox.text内的路径操作呢?
System.Diagnostics.Process process1 = new System.Diagnostics.Process();
this.process1.StartInfo.FileName = "mspaint.exe";
this.process1.StartInfo.Arguments =我要随机打开的文件(在textbox.text内显示路径)
是不是 this.textbox.text 就可以了?
[此贴子已经被作者于2007-9-4 11:17:39编辑过]