windows程序间的调用(100分)

  • 主题发起人 主题发起人 luohaigen
  • 开始时间 开始时间
L

luohaigen

Unregistered / Unconfirmed
GUEST, unregistred user!
怎样在WINDOWS系统中调用已有的程序和数据
 
说清楚一些!
 
WinExec<br>Createprocess...
 
winexec(路径,参数 参数...,显示模式);<br>shellexecute也行。
 
用shellexecute好一些,但也麻烦一些。
 
做成DLL,或者Com可以吧!
 
ShellExecute
 
已答问题里查一下<br>shellexecute
 
winexe()<br>shellexecute()
 
winexe()<br>shellexecute()
 
都讨论了n次了
 
用winexe() 或shellexecute() 较简单(别忘了 uses shellapi;)但功能弱些。<br>用createprocess()则复杂些,但能更好的控制被调用的程序。<br>例如:winexec('c:/windows/winmine.exe',SW_SHOW);<br>
 
多人接受答案了。
 
后退
顶部