Question : How set Access 2003 to be sure that a user name can login just one time

I have an application with link with the tables. I don't want that a same user can login two or more times in the same time. Ex: I don't want two or more "Simon" in the same time for the same database application. Thanks

Answer : How set Access 2003 to be sure that a user name can login just one time

In VBA, you could do this:

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
Function TrustAccess() As Boolean
 
    Dim vbp As VBProject
 
    On Error Resume Next
    Set vbp = ActiveWorkbook.VBProject
 
    TrustAccess = (Err = 0)
 
End Function
Random Solutions  
 
programming4us programming4us