I am trying to hide a typed password in access. The code that I am using is:

Code:
If InputBox("Please Enter Password") <> "river" Then
       MsgBox "Invalid Password", vbOKOnly
        Exit Sub
    End If
Is there any way to do it with the code that I am using??