I have this code to ask for a PW to get to the next point. When I enter the password I can see " hey! " ... is there a way to make the pw show as **** when it is being typed in?
Code:
Dim strPassword
strPassword = InputBox("Enter Password", "Restricted Form")
'Check to see if there is any entry made to input box, or if
'cancel button is pressed. If no entry made then exit sub.
If strPassword = "" Or strPassword = Empty Then
MsgBox "No Input Provided", vbInformation, "Required Data"
Exit Sub
End If
'If correct password is entered open TPA form
'If incorrect password entered give message and exit sub
If strPassword = "hey!" Then
''''''''''''''''''''''''''
do stuff
''''''''''''''''''''''''''
Else
MsgBox "Sorry, you do not have access to this form.", vbOKOnly, "Important Information"
Exit Sub
End If