
Error 75: File/Path Access Error
I'm developing an application in VB 5.0 that is using a database. I
created an installation package using the VB Setup Wizard, and did an
installation on NT Server 4.0 (no service packs installed). It runs
fine.
Another person has installed it on NT Server 4.0 (SP2) and keeps
getting "Error 75: File/Path Access Error" Any ideas on what could be
causing this?
The statement reads:
myDB = DBEngine.OpenDatabase(App.Path & "\" & "myDB.mdb")
I have also tried:
myDB = DBEngine.OpenDatabase(App.Path + "\" + "myDB.mdb")
myDB = DBEngine.Workspaces(0).OpenDatabase(App.Path & "\" &
"myDB.mdb")
The file myDB.mdb DOES exist, as it was installed with the
application.
I have had the person try installing it as Administrator vs. User, in
a directory other than the default "C:\Program Files\myApp" directory.
The error occurs if he runs the application as Admin or as User.
I have checked to ensure the file is not read-only (if it is, a
different error occurs).
Thanks for any assistance!