I have the following code to prompt the user to enter a password. Is there a way to make the displayed input hidden in the dialog box as the user enters the text, such as looking like the ***** characters for typical password entry? Thanks!
PassWdToOpen = InputBox("Enter Password: ")
If PassWdToOpen = "" Then
End
End If
If PassWdToOpen <> "testpassword" Then
MsgBox ("INCORRECT PASSWORD...try again and be sure Caps Lock is off since " & _
"the password IS case sensitive.")
Exit Sub
End If
PassWdToOpen = InputBox("Enter Password: ")
If PassWdToOpen = "" Then
End
End If
If PassWdToOpen <> "testpassword" Then
MsgBox ("INCORRECT PASSWORD...try again and be sure Caps Lock is off since " & _
"the password IS case sensitive.")
Exit Sub
End If