uses shellapi;
function ShellExecute(hWnd: HWND; Operation, FileName, Parameters,
; Directory: PChar; ShowCmd: Integer): HINST; stdcall;
第一个:调用程序的句柄
第二个:操作,一般是open,可以有print等。
第三个:文件名,可以是任何文件
第四个:执行目录
第五个:运行方式,如最大化、正常等,但是SW_Hide隐藏不知道为什么对有些程序不行。
HINSTANCE ShellExecute(
; ; HWND hwnd, // handle to parent window
; ; LPCTSTR lpOperation, // pointer to string that specifies operation to perform
; ; LPCTSTR lpFile, // pointer to filename or folder name string
; ; LPCTSTR lpParameters, // pointer to string that specifies executable-file parameters
; ; LPCTSTR lpDirectory, // pointer to string that specifies default directory
; ; INT nShowCmd // whether file is shown when opened
;
;
;