2010年6月13日 星期日

(轉)如何在執行檔執行時加入參數? / C++ Builder / 程式設計俱樂部

如何在執行檔執行時加入參數? / C++ Builder / 程式設計俱樂部:
作者 : raynorpao(Raynor)
[ 貼文 370 | 人氣 746 | 評價 3530 | 送出評價 0 次 ] C++ Builder頂尖高手貼文超過200則

[ 回應本文 ] [ 發表新文 ] [ 給予評價 ] [ 給予評價 ] [ 回上頁 ] [ 回討論區列表 ] [ 回知識入口 ]
(1)查詢 BCB Help,關鍵字「ParamCount」「ParamStr」

ParamCount, ParamStr Example

The following example beeps once for each eep?passed in on the command line. The example terminates the application if xit?is passed in on the command line.

void __fastcall TForm1::FormCreate(TObject *Sender)

{
for (int i=1;i<=ParamCount();i++)
{
if (LowerCase(ParamStr(i)) == "beep")
Beep(10000,1000);
elseif (LowerCase(ParamStr(i)) == "exit")
Application->Terminate();
}
}

沒有留言:

張貼留言