以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  [求助]打开外部程序如果不存在,提醒不存在。代码怎么写呢?  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=120580)

--  作者:湛江智
--  发布时间:2018/6/20 8:00:00
--  [求助]打开外部程序如果不存在,提醒不存在。代码怎么写呢?
如题
--  作者:有点甜
--  发布时间:2018/6/20 8:45:00
--  
Dim proc As new Process
proc.File = "d:\\abcefg.xls"
If FileSys.FileExists(proc.File) Then
    proc.start
Else
    msgbox("文件不存在")
End If