怎样使用executefile()或shellexecute()(50分)

  • 主题发起人 主题发起人 zhengyong
  • 开始时间 开始时间
Z

zhengyong

Unregistered / Unconfirmed
GUEST, unregistred user!
各位大仙:
请问怎样使用executefile()或shellexecute()函数,请写得详细些,包括怎么把那该死的fmxutils.pas编译成.dcu文件,怎样在其它程序中引用fmxutils.dcu从而使用executefile()函数.
谢谢!
小虾:zhengyong
E-mail:zhengyong@china.com
 
将demos/doc/filemanx/fmxuntils.pas拷贝到delphi/lib中,
uses fmxutils;
executefile(文件名,执行参数,'',显示状态);
shellexcute();可以参考delphi/help/win32.hlp.
 
You can use ShellExecute to open or explore a shell folder. To open a folder, use either of the following calls:
ShellExecute(handle, NULL, path_to_folder, NULL, NULL, SW_SHOWNORMAL);
or
ShellExecute(handle, "open", path_to_folder, NULL, NULL, SW_SHOWNORMAL);
shellexecute是api函数!
executefile好象是封装了shellexecute;
 
接受答案了.
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部