会员登录 - 用户注册 - 网站地图 Office中国(office-cn.net),专业Office论坛
当前位置:主页 > 技巧 > Access技巧 > OFFICE系统集成 > 正文

在Access中调用Excel无法彻底关闭

时间:2005-02-04 22:22 来源:Access911 作者:未知 阅读:


Office 组件都有一个 Quit 方法,直接调用 Quit 方法可以彻底退出该程序
以下以Excel为例子:
Function Automation_To_Excel()
    Dim objExcel As Object
   
    ' Create a new instance of Excel.
    Set objExcel = CreateObject("Excel.Application")
   
    ' Show the instance of Excel on the screen.
    objExcel.Visible = True
   
    ' Open a file named SampleFile.xls
    objExcel.Workbooks.Open ("C:\My Documents\SampleFile.xls")
   
    ' Explicitly close the instance of Excel to free up memory
    ' and set the variable to Nothing to free up the name
    ' space in access.
    objExcel.Quit
    Set objExcel = Nothing
End Function

(责任编辑:admin)

顶一下
(0)
0%
踩一下
(0)
0%
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价: