以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]BeforeConnectOuterDataSource时,获取系统文件地址  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=189873)

--  作者:moseser
--  发布时间:2024/1/2 15:44:00
--  [求助]BeforeConnectOuterDataSource时,获取系统文件地址

在BeforeConnectOuterDataSource事件中,获取 ProjectPath,结果为空,是怎么回事?


--  作者:有点蓝
--  发布时间:2024/1/2 15:55:00
--  

e参数属性:

Name:             外部数据源名称
User:             登录用户
ProjectFile:      项目文件名,含路径。
ProjectPath:      返回项目文件所在目录

ConnectionString: 返回或设置连接字符串。
HideSplashForm:  逻辑型,设为True,关闭Foxtable的启动封面。


If e.name = "成绩" Then
    e.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & e.ProjectPath & 
"成绩数据.mdb;Persist Security Info=False"

End
 if