Open an Access database on the server : Workspaces « Access « VBA / Excel / Access / Word






Open an Access database on the server

 
Sub work()
    Dim myWorkspace As Workspace
    Dim myDatabase As Database
    
    Set myWorkspace = DBEngine.Workspaces(0)
    Set myDatabase = myWorkspace.OpenDatabase(Name:= "\\server\database\Testing.mdb", Options:=True, ReadOnly:=False)
End Sub

 








Related examples in the same category

1.Get Workspaces count and name
2.Get database from Workspace
3.Reference recordset and table with DBEngine
4.Reference database from DBEngine
5.Lists the tables in the LIBRARY database
6.To show that the CurrentDb function adds to the Databases collection
7.Use DBEngine to reference tables and its columns
8.Opens Database in exclusive mode with read/write access
9.Closing a Database
10.Makes the admin account the owner of the new workspace.
11.Closes the Workspace
12.List group user