Office中国论坛/Access中国论坛

标题: 怎样用VBA判断一个表是否存在? [打印本页]

作者: bfwz    时间: 2005-7-10 04:41
标题: 怎样用VBA判断一个表是否存在?
怎样用VBA判断一个表是否存在?
作者: 海狸先生    时间: 2005-7-10 04:55
if dcount("Name","MSysObjects","type =1 and flags=0 and name='某表名'")=1 then msgbox "某表存在"


作者: wu8313    时间: 2005-7-10 21:06
这样也可以:Dim bd As Object        For Each bd In CurrentDb.TableDefs  '用 TableDefs 集合来判断表是否存在        If bd.Name = "表名" Then msgbox "该表存在"
作者: 盗到稻    时间: 2005-7-11 18:20
晕,这正我想要找的
作者: overman2008    时间: 2009-2-17 15:53
十分感谢
作者: chaojianan    时间: 2009-2-17 21:16
收藏了备用。
作者: wang1950317    时间: 2009-11-24 11:13
找到了,正需要!谢谢!




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