设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 1344|回复: 2
打印 上一主题 下一主题

[窗体] 文件路径问题

[复制链接]
跳转到指定楼层
1#
发表于 2009-8-13 09:59:38 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
如何获取,我的链接表路径
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
2#
发表于 2009-8-13 10:50:52 | 只看该作者
Getting the path to a Linked Table
If you have a Linked Table in Access, and you want to know the path and name of the Database that it is located in, then you can check the TableDef's Connect property. A generic function for this is below:
Function fLinkedTablePath1(strTableName As String) As String
    fLinkedTablePath1 = Mid(CurrentDb.TableDefs(strTable).Connect, InStr(CurrentDb.TableDefs(strTableName).Connect, ";DATABASE=") + 10)
End Function

If you are only ever going to be concerned with tables that are linked from another Access database, then, rather than finding the start of the path in the Connect string, you can just use the position:

Function fLinkedTablePath2(strTableName As String) As String
    fLinkedTablePath2 = Mid(CurrentDb.TableDefs(strTable).Connect, 11)
End Function
3#
 楼主| 发表于 2009-8-13 10:56:50 | 只看该作者
非常感觉版主的支持~
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-11-19 20:21 , Processed in 0.080762 second(s), 27 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表