Office中国论坛/Access中国论坛

标题: 为何这样写,启动命令选项会出错!!!! [打印本页]

作者: xinle    时间: 2008-5-7 19:08
标题: 为何这样写,启动命令选项会出错!!!!
我在vb中建了一个可执行文件:
Dim strRunshell As String
strRunshell = "C:\Program Files\Microsoft Office\OFFICE11\MSACCESS.EXE"
Dim strAppPath As String
strAppPath = App.Path & "xxxx\.mdb"
Call Shell(strRunshell & " " & strAppPath, vbMaximizedFocus)

调试运行时可以正常打开,但生成EXE文件后运行却提示:
用来启动 Microsoft Office Access 命令行包含了 MicrosoftOfficeAccess 无法识别的选项。

不知道哪里出错了,请指正..

谢谢


作者: hi-wzj    时间: 2008-5-7 19:12
strRunshell = "‘C:\Program Files\Microsoft Office\OFFICE11\MSACCESS.EXE’"
作者: xinle    时间: 2008-5-7 19:49
试过了,提示:
运行时错误53,文件未找到
但文件肯定在..
作者: t小宝    时间: 2008-5-7 20:03
标题: 试试加双引号
Dim strRunshell As String
strRunshell = """C:\Program Files\Microsoft Office\OFFICE11\MSACCESS.EXE"""
Dim strAppPath As String
strAppPath = """" & App.Path & "xxxx\.mdb"""
Call Shell(strRunshell & " " & strAppPath, vbMaximizedFocus)
作者: xinle    时间: 2008-5-7 20:20
谢谢版主:hi-wzj
谢谢t小宝,用你的方法搞定了。
在ASP/VBS中也是这样用双引号的,我怎么没想起来呢?
万分感谢!




欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/) Powered by Discuz! X3.3