ShellExecute 方法

ShellExecute 方法

Return to chapter overview

ShellExecute 方法

打开、打印指定文件链者网址链接。

ShellExecute(Action, FileName, Parameter, DirName, ShowCmd)

Action        指出要执行的动作,该参数可以是"open"或者是"print

FileName     指出要打开的文件或者网址连接。

Parameter   FileName参数是个可参行文件时,本参数指定传递给程序的参数,否行此参数为空。

DirName     缺省的目录。

SwowCmd       应用程序主窗口在被创建时的初始状态。0隐藏 1普通 2最小化显示 3最大化显示

示例

'打网网址

ShellExecute("open", "http://www.weistock.com", "", "", 1)

'打开一个文本文件

ShellExecute("open","Readme.ttt","",Application.AppPate,3)