Thank You all for your Help,
At this time I am only checking for passwords. I will be checking usernames too but for now I am seeing if it will work. I have a Table called "Users" In that Table I have
recordset for password,username,forms,reports,admin. The last three are marked as yes or no. This is the full code that I have written when a user puts it a password and clicks the enter button. I can now check all the passwords in my table and it will let me in but whatever value is marked in the first record for Forms,reports,admin is what ever user has the rights too( hOw do I fix this problem)Private Sub Command10_Click()
Dim db As Database, rs As Recordset, found As Boolean
Set db = CurrentDb
Set rs = db.OpenRecordset("users", dbOpenTable)
found = False
Password = InputBox("Enter your password"

var1 = rs.Fields("forms"

var2 = rs.Fields("reports"

var3 = rs.Fields("admin"

var4 = rs.Fields("form1"
Do While Not rs.EOF
Key = rs!Password
If Password = Key Then
found = True
Exit Do
End If
rs.MoveNext
Loop
If found = True Then
MsgBox ("this Works"

If var1 = True Then
Me.cmdforms.Enabled = True
Else
Me.cmdforms.Enabled = False
End If
If var2 = True Then
Me.cmdreports.Enabled = True
Else
Me.cmdreports.Enabled = False
End If
If var3 = True Then
Me.cmdadmin.Enabled = True
Else
Me.cmdadmin.Enabled = False
End If
Else
MsgBox ("Wrong Password"

Me.cmdreports.Enabled = False
Me.cmdforms.Enabled = False
Me.cmdadmin.Enabled = False
End If
End Sub
Thanks again