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]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Input box question 2
Password encryption 2
Password input box 1
Password Prompt 1
Delete record 3
encript 2
How to hide password? 1
How to password protect a form 1

Back
Top