月別アーカイブ: 2014年12月

C#で メモ帳を起動する

//メモ帳を起動する
System.Diagnostics.Process p = System.Diagnostics.Process.Start(“notepad.exe”);

//コマンドライン引数に「”C:\test\1.txt”」を指定してメモ帳を起動する
System.Diagnostics.Process.Start(“notepad.exe”, @”””C:\test\1.txt”””);

//Excelファイルを起動する
System.Diagnostics.Process.Start(“excel.exe”, “C:\test\test.xls”);