password

  • Thread starter Thread starter mike via AccessMonster.com
  • Start date Start date
M

mike via AccessMonster.com

Hi,
i had a code below i found it on this thread. the thing is i dont want my
password readable when i type on the input box. Its kinda funny but i really
dont know how to do this. i had search the tblepassword and checkpassword
form thing, its a long process but i want this simple code be place on a
command button.

thanks in advance...

Private Sub btDelete_Click()
If InputBox("OOPS!!! Please identify yourself... ") <> "vincent" Then
MsgBox "You are not authorized! sorry.. "
End


End If
 
Hi Mike

Don't use an Input Box. Use a form instead with an unbound field for the
user to enter the password. You can set the input mask property to
'password' format so that it will only show the asterisks
 
thanks

Chris said:
Hi Mike

Don't use an Input Box. Use a form instead with an unbound field for the
user to enter the password. You can set the input mask property to
'password' format so that it will only show the asterisks
Hi,
i had a code below i found it on this thread. the thing is i dont want my
[quoted text clipped - 12 lines]
 
Back
Top