Hi,
I have some code used to protect a button, everything is working fine except the password shows up as actual characters, obviously this is not ideal. Could anyone tell me a way to have the letters inputted show up as '*' or something along those lines? Is this even possible using this method?
The Code I used is
Code:
Private Sub Command163_Click()
Dim PassWord As String
PassWord = InputBox("Enter Password")
If PassWord = "password" Then
Forms!frmSpecification.FRStatus = "Approved"
Forms!frmSpecification.FRDate = Now()
Else
MsgBox ("Access Denied! Use the Main Menu to report a problem.")
End If
End Sub
Thanks.