Hi everyone. First off, thanks for any help. I have an input box that asks for a password and then checks and locks a checkbox. Its on a bunch of forms that Quality Assurance is going to use as their digital signature to sign off on forms. I asked this yesterday, how can I mask the password as its typed in by the user. Some people say you can, but I found this code posted that supposedly allows you to do this but I am not sure how to apply it to my code. Can somebody please help me.
http://www.access-programmers.co.uk/forums/showthread.php?t=150644
^^ The code to mask an input box
MY CODE:
Private Sub Command1_Click()
If InputBox("Enter Password", "Quality Assurance") = "Accept" Then
Me!chkapproval = True
Me!chkapproval.Visible = True
Me!chkapproval.Locked = True
Else
Me!chkapproval = False
End If
End Sub
Private Sub Command4_Click()
If InputBox("Enter Password", "Quality Assurance") = "Reject" Then
Me!chkreject = True
Me!chkreject.Visible = True
Me!chkreject.Locked = True
Else
Me!chkreject = False
End If
End Sub
http://www.access-programmers.co.uk/forums/showthread.php?t=150644
^^ The code to mask an input box
MY CODE:
Private Sub Command1_Click()
If InputBox("Enter Password", "Quality Assurance") = "Accept" Then
Me!chkapproval = True
Me!chkapproval.Visible = True
Me!chkapproval.Locked = True
Else
Me!chkapproval = False
End If
End Sub
Private Sub Command4_Click()
If InputBox("Enter Password", "Quality Assurance") = "Reject" Then
Me!chkreject = True
Me!chkreject.Visible = True
Me!chkreject.Locked = True
Else
Me!chkreject = False
End If
End Sub