I have completed a password using the code below. However when a user inputs the password you can see what they are typing. I want it so it just shows ***** . Can somebody please help?
Dim strPasswd
strPasswd = InputBox("Enter Password", "Restricted Access")
If strPasswd = "" Or strPasswd = Empty Then
Msgbox "No input Provided", vbInformation, "Required Data"
Exit Sub
End If
If strPasswd = "Password" Then
Docmd.Openform "call" acNormal
Else
Msgbox "Sorry, you do not have access to this form" vbOKOnly, "Important Information"
Exit sub
End if
Dim strPasswd
strPasswd = InputBox("Enter Password", "Restricted Access")
If strPasswd = "" Or strPasswd = Empty Then
Msgbox "No input Provided", vbInformation, "Required Data"
Exit Sub
End If
If strPasswd = "Password" Then
Docmd.Openform "call" acNormal
Else
Msgbox "Sorry, you do not have access to this form" vbOKOnly, "Important Information"
Exit sub
End if