I have a simple question about VB coding for an access application...I had it working with one user but cant get it with multiple users...I want to be able to check a table and if the users name is in this table I want to unlock a button on the application..here is the code that works with one user...
Private Sub Form_Load()
If UserNem = "Tim" Then
[Command12].Enabled = True
Else
[Command12].Enabled = False
End If
thanks
Private Sub Form_Load()
If UserNem = "Tim" Then
[Command12].Enabled = True
Else
[Command12].Enabled = False
End If
thanks