用C#调用Windows应用程序时
只要定义一个
System.Diagnostics.Process process1;
然后窗体载入的时候再
private void Form1_Load(object sender, System.EventArgs e)
{
this.process1.StartInfo.FileName = "C:\\WINDOWS\\NOTEPAD.EXE";
}
然后再
private void button1_Click(object sender, System.EventArgs e)
{
this.process1.Start();
}
是不是就可以了?
我以前用VS.net2003的时候全是这样用的,为什么到2005里却无法实现了?
在2005里该怎么调用呢? 谢谢大家!