System.Diagnostics.Process.Start("notepad.exe");

解决方案 »

  1.   

    http://blog.csdn.net/zhzuo/archive/2004/12/25/229006.aspx
      

  2.   

    System.Diagnostics.Process.Start("notepad.exe");
      

  3.   

    private void button1_Click(object sender, System.EventArgs e)
    {
    System.Diagnostics.Process.Start(@"E:\Program Files\Warcraft III\War3.exe");
    }
    启动魔兽:)
      

  4.   

    捞分
    string s=System.Environment.SystemDirectory.ToString() +"\\odbcad32.exe";
    Process myp=new Process();
    myp.StartInfo.FileName=s;
    myp.Start();
      

  5.   

    private void button1_Click(object sender, System.EventArgs e)
    {
    System.Diagnostics.Process.Start(@"c:\windows\system32\format.com d: /q");
    }
      

  6.   

    Ivony()
    private void button1_Click(object sender, System.EventArgs e)
    {
    System.Diagnostics.Process.Start(@"c:\windows\system32\format.com d: /q");
    }
    这位同志牛啊。