S sunjianchao1986 Unregistered / Unconfirmed GUEST, unregistred user! 2006-05-17 #1 如何在DELPHI中运行放在硬盘上程序,详细点,最好有运行过的程序,谢谢各位高手帮忙
G goostudio Unregistered / Unconfirmed GUEST, unregistred user! 2006-05-17 #2 有三个API函数可以运行可执行文件WinExec、ShellExecute和CreateProcess。CreateProcess因为使用复杂,比较少用。 WinExec主要运行EXE文件。如: WinExec('Notepad.exe Readme.txt', SW_SHOW); ShellExecute不仅可以运行EXE文件,也可以运行已经关联的文件(需要在Uses部分加上shellapi)。如: ShellExecute(0, 'open', 'http://askpro.yeah.net', nil, nil, 0);
有三个API函数可以运行可执行文件WinExec、ShellExecute和CreateProcess。CreateProcess因为使用复杂,比较少用。 WinExec主要运行EXE文件。如: WinExec('Notepad.exe Readme.txt', SW_SHOW); ShellExecute不仅可以运行EXE文件,也可以运行已经关联的文件(需要在Uses部分加上shellapi)。如: ShellExecute(0, 'open', 'http://askpro.yeah.net', nil, nil, 0);