0

I need to replace this structure:

dim base as dao.database
set base = opendatabase ("c:\path\name.mdb")

with another in which the .mdb is located in a server directory. I tried:

dim base as dao.database
set base = opendatabase ("\\server\folder\name.mdb")

but it did not work. I'm using VB6. Any ideas?

BIBD
  • 15,107
  • 25
  • 85
  • 137

1 Answers1

0

Try

set base = opendatabase ("\\server\folder\name.mdb")
Mitch Wheat
  • 295,962
  • 43
  • 465
  • 541