Access 2002, split server/client, DAO. I want the user to be able to invoke, from a form, a second instance of the database; the user can then compare records between the two. I have tried
But my VBA variables don't distinguish between the two instances. Havoc.
How can I do it? (And, would the New keyword be helpful?)
[purple]_______________________________
Never confuse movement with action -- E. Hemingway [/purple]
Code:
Private Sub btnLaunch_Click()
Dim q As String: q = """"
Shell "MSAccess.exe " & q & "C:\path\MyApp.mdb" & q, _
vbNormalFocus
End Sub
How can I do it? (And, would the New keyword be helpful?)
[purple]_______________________________
Never confuse movement with action -- E. Hemingway [/purple]