delphi 7. 0怎么运行外部可执行文件(100分)

  • 主题发起人 主题发起人 独孤大虾
  • 开始时间 开始时间

独孤大虾

Unregistered / Unconfirmed
GUEST, unregistred user!
winexec
shellexecute
 
ShellExecute(handle, 'open', '文件名', nil, nil, SW_SHOWNORMAL);
**要引用APISHELL单元。是API函数。
 
WinExec(Pchar(FilePath+'/Disk1/setup.exe'),01) //可执行文件

ShellExecute(Handle, nil, 'Mailto:', '', '', 01) //可执行文件和其他
 
建议使用shellexecute ,winexec有时候会出现问题,虽然不常见
 
同意各位,
Delphi本身不可以,需要调用Api函数
 
后退
顶部