delphi怎樣呼叫外部exe檔案
delphi怎樣呼叫外部exe檔案
方法一uses winprocs;
……begin
winexec(......);
……end.
和呼叫pascal庫函式沒什麼兩樣。
方法二用shellexecute更好,在uses段加入shellapi,使用時如:
第乙個引數為父視窗控制代碼;
第二個引數為開啟方式(open,print兩種);
第三個引數為執行檔案全路徑;
第四個引數為執行檔案引數;
第五個引數為執行檔案開始執行時的初始目錄;
第六個引數為為執行檔案執行方式(sw_hide,sw_maximize,sw_minimize,
sw_restore,sw_show,sw_showdefault,sw_showmaximized,sw_showminimized,
sw_showminnoactive,sw_showna,sw_shownoactivate,sw_shownormal);
具體請看幫助。另外,如果為字串引數,其中包含變數或運算的必需用pchar()函式。
delphi怎樣呼叫外部EXE檔案
delphi怎樣呼叫外部exe檔案 delphi怎樣呼叫外部exe檔案 方法一 uses winprocs begin winexec end.和呼叫pascal庫函式沒什麼兩樣。方法二 用shellexecute更好,在uses段加入shellapi,使用時如 第乙個引數為父視窗控制代碼 第二個引...
qt呼叫外部exe
startdetached啟動的libfx.exe跟你的程序沒關係,你的程式關了它還可以繼續執行 qstring strfile tr e f libfx.exe qprocess pprocess new qprocess this pprocess startdetached strfile s...
c 呼叫外部exe程式
c 呼叫外部exe程式,首先要 using system.diagnostics 然後開啟乙個新process system.diagnostics.processstartinfo p null system.diagnostics.process proc p new processstarti...