1. 程式人生 > >Delphi程序啟動參數的讀取

Delphi程序啟動參數的讀取

ESS str int phi -- 應用 param 代碼 show

Delphi中有兩個專門用於讀取命令行參數的變量:
Paramcount-->用於返回命令行參數的個數
Paramstr數組-->用於返回指定的命令行參數

示例代碼:
showmessage(‘命令行參數個數為:‘+inttostr(paramcount));
showmessage(‘第1個命令行參數為:‘+paramstr(1));
showmessage(‘應用程序名稱為:‘+paramstr(0));

Delphi程序啟動參數的讀取