1,217
社区成员
发帖
与我相关
我的任务
分享
'visdata好像只能打开access97的数据库,楼主可以在VB中用ADO对象打开数据:
dim conn as new adodb.connection
with conn
If .State = adStateOpen Then .Close
.ConnectionString = "provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.path & "\test.mdb;Mode=ReadWrite;Persist Security Info=False"
.Open
end with