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
Chris B - 24 Oct 2005 15:20 GMT
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]
>
> End If
mike - 25 Oct 2005 07:06 GMT
thanks
>Hi Mike
>
[quoted text clipped - 7 lines]
>>
>> End If