アプリケーションを起動する。
exec <command line> [<show>]
コマンドライン文字列 <command line> に従い、アプリケーションを起動する。
showパラメータには以下の文字列を指定することができる。hide minimize maximize show ;default parameters when no show command specified.
; 「メモ帳」を起動 exec 'notepad readme.txt' ; 「メモ帳」を最大化表示で起動 exec 'notepad readme.txt' 'maximize'
; バッチファイルを起動する tmp='cmd /c c:\upload.bat ' strconcat tmp username1 strconcat tmp ' ' strconcat tmp userpass1 strconcat tmp ' ' strconcat tmp address messagebox tmp 'exec' exec tmp