Hey everyone, I THINK I am almost done with my database, thanks large in part to everyone here. I have one last question (I think). I have a password protected command button that has the user enter a password. If correct password is entered, a check box is marked off and locked, if not, its not checked. I can not seem to figure out how to input mask the password as the user enters it. When somebody is entering a password, I dont want everyone else standing around to see it. CODE:
Private Sub Command4_Click()
If InputBox("Enter Password", "Reject") = "Beer" Then
Me!chkreject = True
Me!chkreject.Visible = True
Me!chkreject.Locked = True
Else
Me!chkreject = False
End If
Private Sub Command4_Click()
If InputBox("Enter Password", "Reject") = "Beer" Then
Me!chkreject = True
Me!chkreject.Visible = True
Me!chkreject.Locked = True
Else
Me!chkreject = False
End If