最简单的用WINEXEC。
最好用以下我自己写的函数:
procedure TDataModul.WinExecAndWait32(Title,FileName:String;
Visibility : integer);
var
zAppName:array[0..512] of char;
zCurDir:array[0..255] of char;
WorkDir:String;
StartupInfo:TStartupInfo;
ProcessInfo:TProcessInformation;
//dwExitcode
WORD;
//lpExitCode:LPDWORD;
begin
StrPCopy(zAppName,FileName);
GetDir(0,WorkDir);
StrPCopy(zCurDir,WorkDir);
FillChar(StartupInfo,Sizeof(StartupInfo),#0);
StartupInfo.cb := Sizeof(StartupInfo);
StartupInfo.lpTitle:=pchar(Title);
StartupInfo.dwFlags := STARTF_USESHOWWINDOW;
StartupInfo.wShowWindow := Visibility;
if not CreateProcess(nil,
zAppName, { pointer to command line string }
nil, { pointer to process security attributes }
nil, { pointer to thread security attributes }
false, { handle inheritance flag }
CREATE_NEW_CONSOLE or { creation flags }
NORMAL_PRIORITY_CLASS,
nil, { pointer to new environment block }
nil, { pointer to current directory name }
StartupInfo, { pointer to STARTUPINFO }
ProcessInfo) { pointer to PROCESS_INF }
then
Application.MessageBox('程序执行错误!','提示',MB_OK+MB_ICONINFORMATION)
else
begin
WaitforSingleObject(ProcessInfo.hProcess,INFINITE);
//lpExitCode:=@dwExitCode;
//GetExitCodeProcess(ProcessInfo.hProcess,lpExitCode);
end;
end;