shellexecute参数问题(20分)

  • 主题发起人 主题发起人 settingsun
  • 开始时间 开始时间
S

settingsun

Unregistered / Unconfirmed
GUEST, unregistred user!
我要用shellexecute调用一外部程序,并要传递两个参数,这两个参数中间应怎么分开<br>shellexecute(application.handle,'open','***.exe','参数',nil,sw_nomal),两个参数<br>都是字符串,两个参数之间用不用加个分号或者什么符号以区别开啊。
 
看看这里:<br>http://delphibbs.com/delphibbs/dispq.asp?lid=1803804<br>
 
两个参数之间用空格分开。
 
ShellExecute(0, nil, PChar('explorer.exe'), PChar('/e, c:/'), nil, SW_SHOWMAXIMIZED);<br>相当于在命令行下:<br>C:/&gt;explorer.exe /e c:/ (回车)
 
多人接受答案了。
 
后退
顶部