Hi,
I want to open a database application, shared among the users on a common drive, by clicking on a button on a form in another database.
So far, I have been using
Private Sub Command0_Click()
Dim strDB As String
strDB = "C:\Documents and Settings\umair.khan\Desktop\PC-Docs_FE.accdb"
Set appAccess = CreateObject("Access.Application")
appAccess.OpenCurrentDatabase strDB
appAccess.Visible = True
End Sub
this works for my login - but how do I make it available for all the users? The database is placed on user's My documents/Trusted location.
Please advise.
Thanks!
I want to open a database application, shared among the users on a common drive, by clicking on a button on a form in another database.
So far, I have been using
Private Sub Command0_Click()
Dim strDB As String
strDB = "C:\Documents and Settings\umair.khan\Desktop\PC-Docs_FE.accdb"
Set appAccess = CreateObject("Access.Application")
appAccess.OpenCurrentDatabase strDB
appAccess.Visible = True
End Sub
this works for my login - but how do I make it available for all the users? The database is placed on user's My documents/Trusted location.
Please advise.
Thanks!