S seraphcj Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-29 #1 在delphi里面,什么函数可以运行外部的可执行函数?就像c里的shell?
轻 轻松虎 Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-31 #3 uses ShellAPI; begin ... ShellExecute(Application.handle, 'Open', 'Notepad.exe', '', '', sw_Normal); ... end;
uses ShellAPI; begin ... ShellExecute(Application.handle, 'Open', 'Notepad.exe', '', '', sw_Normal); ... end;
D dedema Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-31 #4 winexec, shellexecute,sheelexecuteex,前面要加uses shellapi,