让用户看不到链接表
时间:2009-03-05 09:56 来源:网络 作者:让用户看… 阅读:次
用代码将链接表的attributes属性改成1,隐藏链接表, 再生成mde文件即可
代码:
Sub asdfasdfa() '隐藏
For Each tabdef In CurrentDb.TableDefs
Debug.Print tabdef.Name
Debug.Print tabdef.Attributes
If tabdef.Attributes = 1073741824 Then
tabdef.Attributes = 1
End If
Next
End Sub
Sub asdfasdfa1() '显示
For Each tabdef In CurrentDb.TableDefs
Debug.Print tabdef.Name
Debug.Print tabdef.Attributes
If tabdef.Attributes = 1073741825 Then
tabdef.Attributes = 0
End If
Next
End Sub
代码:
Sub asdfasdfa() '隐藏
For Each tabdef In CurrentDb.TableDefs
Debug.Print tabdef.Name
Debug.Print tabdef.Attributes
If tabdef.Attributes = 1073741824 Then
tabdef.Attributes = 1
End If
Next
End Sub
Sub asdfasdfa1() '显示
For Each tabdef In CurrentDb.TableDefs
Debug.Print tabdef.Name
Debug.Print tabdef.Attributes
If tabdef.Attributes = 1073741825 Then
tabdef.Attributes = 0
End If
Next
End Sub
(责任编辑:admin)
顶一下
(0)
0%
踩一下
(0)
0%
相关内容
- ·如何将数据表导出备份到excel表格
- ·在表中用组合框选择备选项目
- ·如何设置表的Caption和Description属性
- ·用Access实现学校课程表的科学管理
- ·在表中设置美元等货币符号的方法
- ·Access建表需注意的问题(建表原则)
- ·Access获取表下个自动增加的ID值【两种
- ·Access光标在文本框的右边
- ·Access格式、掩码、文本有效性的异同
- ·access中的掩码
- ·【技巧】Access时间函数汇总(一)
- ·Access隐藏表中的列
- ·Excel与Access简便联系方法
- ·Word文本文件导入到Access2007与导出的
- ·ACCESS字段中设置默认日期值函数大全
- ·ACCESS的真假:三、往一个表中插入10万
最新内容
推荐内容