启动进程用API函数:CreatePorcess <br>所需两个结构 TStartupInfo,TProcessInformation 在Windows.pas中有定义。<br><br>等待进程退出 用API函数 GetExitCodeProcess:<br><br>while true do<br>begin<br> GetExitCodeProcess(hProcess,iExitCode);<br> if iExitCode=??(记不清了) then<br> Break;<br> Application.ProcessMessages;<br>end;<br><br><br><br>