??????(50分)

  • 主题发起人 主题发起人 ygd
  • 开始时间 开始时间
Y

ygd

Unregistered / Unconfirmed
GUEST, unregistred user!
怎么在delphi 里运行一个外部的程序?[:(]
 
如:运行Windows计算器<br>if Findwindow('notepad',nil) = 0 then<br>&nbsp; WinExec('notepad.exe',sw_normal) ;
 
winexec() 看帮助!
 
也可用API函数ShellExecute, 要引用ShellAPI单元
 
<br>ShellExecute(Handle,pchar('open'),pchar('help.chm'),'',pchar(ExtractFileDir(Application.ExeName)),SW_NORMAL);
 
winexec()<br>shellexecute()<br>createprocess()
 
后退
顶部