C chatop Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-01 #1 比如说我在写一个程序,但这个程序需要调用一下外部的一个应用程序 例:程序abc.exe 需要调用程序外部的bbb.exe文件 是不是用winexec()他的方法是怎么样的? 送分
B beta Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-01 #2 winexec('c:/bbb.exe', SW_SHOW);
B beta Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-01 #5 uses ShellAPI; ShellExecute(0, nil, 'c:/bbb.exe', nil, nil, SW_SHOW);
W wy0311 Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-01 #6 例: uses ShellAPI; ShellExecute(0, 'open', 'iexplore', 'www.163.com', nil, SW_SHOWNORMAL); ShellExecute(0, 'open', 'regedit', nil, nil, SW_SHOWNORMAL);
例: uses ShellAPI; ShellExecute(0, 'open', 'iexplore', 'www.163.com', nil, SW_SHOWNORMAL); ShellExecute(0, 'open', 'regedit', nil, nil, SW_SHOWNORMAL);