On my form I have a button which requires a password before it displays another form. The problem is that when the user inputs the password it is clearly visible to everyone around them. Is there a way to encript the writing when putting in the password or a way to put the font to a symbol font?
The code I am using is:
strMsg = "To see this report requires a password. Please enter a valid password below.!
strInput = "InputBox(Prompt = strMsg, title:="User Info", XPos:=2000. YPos:=2000)
If strInput = "Password" then GoTo Correct
GoTo Incorrect
Correct:
MsgBox "Password correct", vbExclamation, "Valid"
Me!form.visile = true
GoTo Exit_sub
Incorrect:
MsgBox "Invalid Password entered."
Exit_sub:
end Sub
Any help will be great
dmb1
The code I am using is:
strMsg = "To see this report requires a password. Please enter a valid password below.!
strInput = "InputBox(Prompt = strMsg, title:="User Info", XPos:=2000. YPos:=2000)
If strInput = "Password" then GoTo Correct
GoTo Incorrect
Correct:
MsgBox "Password correct", vbExclamation, "Valid"
Me!form.visile = true
GoTo Exit_sub
Incorrect:
MsgBox "Invalid Password entered."
Exit_sub:
end Sub
Any help will be great
dmb1