我们可以通过Windowsshell.方法使用ShellExecuteAPI函数来加载文档。这个函数将自动的来判断文件的默认打开方式,并用默认的打开方式来开启文档。
以下就是ShellExecute函数的声明:
PublicDeclareFunctionShellExecuteLib"shell32.dll"Alias_
"ShellExecuteA"_
(ByValhWndAsLong,ByVallpOperationAsString,_
ByVallpFileAsString,_
ByVallpParametersAsString,_
ByVallpDirectoryAsString,_
ByValnShowCmdAsLong)AsLong
PublicConstSW_SHOWNORMALAsLong=1
PublicConstSW_HIDEAsLong=0
我们将结合下面的例子来解释该API函数的主要参数的意义。
CallShellExecute(Me.hWnd,"Open","c:mypage.ht...[ 查看全文 ]