I am working with Access 2000. I would like to test for a previous instance of the database being open. In VB, I could use:
Is there something comparable in Access?
Thank you for your help.
Ahliana
Argue for your limitations and, sure enough, they're yours! - Richard Bach
Code:
If App.Previnstance Then
sFormCaption = Me.Caption
App.Activate sFormCaption
Unload Me
End If
Is there something comparable in Access?
Thank you for your help.
Ahliana
Argue for your limitations and, sure enough, they're yours! - Richard Bach