SiteMap

2013年6月19日水曜日

C# - 在程式中呼叫其他程式

範例,呼叫小算盤



// 想要呼叫的程式路徑, 可以呼叫已經安裝在win系統之中的程式 string strProgramPath = @"c:\Windows\System32\calc.exe";
           
// Process.Start() 啟動語句
// using System.Diagnostics; 請注意要加這句才能使用
Process.Start(strProgramPath);

0 件のコメント: