I am trying to hide a typed password in access. The code that I am using is:
Is there any way to do it with the code that I am using??Code:If InputBox("Please Enter Password") <> "river" Then
MsgBox "Invalid Password", vbOKOnly
Exit Sub
End If
Printable View
I am trying to hide a typed password in access. The code that I am using is:
Is there any way to do it with the code that I am using??Code:If InputBox("Please Enter Password") <> "river" Then
MsgBox "Invalid Password", vbOKOnly
Exit Sub
End If
You cant do it with the standard InputBox unless you subclass it.
Not worth it to me!
MartinLiss has an example in his signature on creating a custom
one here.
HTH