FINISHING Touches :)

JTQ911

Registered User.
Local time
Today, 08:09
Joined
Jul 26, 2007
Messages
83
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
 
Instead of the inputbox I think you'll need to create a small form to mimick the inputbox and in the password textbox control set the input mask to 'password'.
 

Users who are viewing this thread

Back
Top Bottom