F fanhongwei Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-30 #1 我有两个可执行程序:一个是主程序,另外一个是配置程序。 我想在主程序中执行配置程序,执行完以后返回主程序。请问如何写代码
A alextsui Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-30 #3 你查閱這個試試 WaitForSingleObject
P pengjinlongex Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-30 #4 引用SHELLAPI单元,调用shellexecute函数
A alextsui Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-30 #6 用 ShellExecute 是可以, 但并不能返回主程序. ShellExecute(handle, nil, PChar('想要執行的程式'), nil, PChar(ExtractFilePath(Application.ExeName)), SW_SHOWMAXIMIZED); WinExec() 和 WaitForSingleObject() 你自己查閱一下幫助.
用 ShellExecute 是可以, 但并不能返回主程序. ShellExecute(handle, nil, PChar('想要執行的程式'), nil, PChar(ExtractFilePath(Application.ExeName)), SW_SHOWMAXIMIZED); WinExec() 和 WaitForSingleObject() 你自己查閱一下幫助.
J jasper Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-30 #7 1. WinExec(pchar('c:/temp.exe'),SW_SHOWDEFAULT); 2. shellexecute(0,nil,pchar('c:/temp.exe'),nil,nil,SW_NORMAL); 3.使用线程,好象必要。
1. WinExec(pchar('c:/temp.exe'),SW_SHOWDEFAULT); 2. shellexecute(0,nil,pchar('c:/temp.exe'),nil,nil,SW_NORMAL); 3.使用线程,好象必要。