作者 : raynorpao(Raynor) [ 貼文 370 | 人氣 746 | 評價 3530 | 送出評價 0 次 ] | |
[ 回應本文 ] [ 發表新文 ] [ 給予評價 ] [ 給予評價 ] [ 回上頁 ] [ 回討論區列表 ] [ 回知識入口 ] |
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();
}
}
沒有留言:
張貼留言