Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要替换这个结构:
dim base as dao.database set base = opendatabase ("c:\path\name.mdb")
另一个 .mdb 位于服务器目录中。我试过了:
dim base as dao.database set base = opendatabase ("\\server\folder\name.mdb")
但它没有用。我正在使用VB6。有任何想法吗?
尝试
set base = opendatabase ("\\server\folder\name.mdb")