怎样在我的程序里执行外部应用程序?(50分)

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

shuoshuoshuo

Unregistered / Unconfirmed
GUEST, unregistred user!
请问各位高手:

怎样在我的程序里执行外部应用程序?
 
shellexecute
 
shellexecute
winexec
createprocess
 
这分你们都和我抢 :-(

ShellExecute(
hwmd, //父窗口句柄
LPCSTR lpszOp;//要执行操作窜的地址 可以为open ,print默认为open
LPCSTR lpszFile;//文件名窜的地址
LPCSTR lpszParams;//执行文件串的地址
LPCSTR lpszDir;//默认目录串的地址
int fsShowCmd;//打开时文件是否显示
);
——————————————————————
WinExec(
LPCSTR lpCmdLine, // address of command line
UINT uCmdShow // window style for new application
);
———————————————————————
 
谢谢各位!

不过我没有分了,以后我会给大家补上!
 
呵呵,没分没关系,你的另一题我也回答了,看是不是满意?
 
这条命令运行出错,请问有什么问题?
ShellExecute(hwmd,'open',pchar(dd),pchar(ff),nil,Sw_hide);
 
楼上的是不是要在uses里面添加ShellAPI;啊?
 
后退
顶部