Hi,
I have created 3 Databases with shared Tables.
This has helped to ensure centralization of controls to the relevant databases.
Can someone tell me of how best to make it possible to switch. between the databases, without repeated passwords
I have tried the following code and there is no response.
Please help
Paul
I have created 3 Databases with shared Tables.
This has helped to ensure centralization of controls to the relevant databases.
Can someone tell me of how best to make it possible to switch. between the databases, without repeated passwords
I have tried the following code and there is no response.
Code:
Sub TExpt()
' Initialize string to database path.
Const strConPath = "\\Server\Exports Database\T-ShippersDbFile.mdb"
strDB = strConPath & "T-ShippersDbFile.mdb"
' Create new instance of Microsoft Access.
Set appAccess = CreateObject("Access.Application")
' Open database in Microsoft Access window.
appAccess.OpenCurrentDatabase strConPath
' Open Orders form.
' appAccess.DoCmd.OpenForm "Orders"
End Sub
Please help
Paul